From a17971935be09b51f9bd59417cf2fdefa3af3c26 Mon Sep 17 00:00:00 2001 From: tpart Date: Mon, 8 Jul 2024 22:35:15 +0200 Subject: Add other contributors to license copryright notice --- COPYING | 3 +++ 1 file changed, 3 insertions(+) diff --git a/COPYING b/COPYING index c8b1d05d..45614f04 100644 --- a/COPYING +++ b/COPYING @@ -1,5 +1,8 @@ Hurry Curry! - a game about cooking Copyright (C) 2024 metamuffin +Copyright (C) 2024 nokoe +Copyright (C) 2024 sofviic +Copyright (C) 2024 tpart This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as -- cgit v1.2.3-70-g09d2 From cac67794e94ecdcf334ff44e5219e3350509a789 Mon Sep 17 00:00:00 2001 From: nokoe Date: Mon, 8 Jul 2024 22:42:50 +0200 Subject: increase websocket inbound buffer size --- client/multiplayer.gd | 1 + 1 file changed, 1 insertion(+) diff --git a/client/multiplayer.gd b/client/multiplayer.gd index aa895b69..cdb6d97c 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -61,6 +61,7 @@ var socket := WebSocketPeer.new() func _ready(): print("Multiplayer connect"); socket.connect_to_url(Global.server_url) + socket.inbound_buffer_size = 1024 * 1024 * 4 connected = true func _notification(what): -- cgit v1.2.3-70-g09d2