diff options
-rw-r--r-- | COPYING | 3 | ||||
-rw-r--r-- | client/multiplayer.gd | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -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 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): |