diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-08 22:48:46 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-08 22:48:46 +0200 |
commit | 72d970f1b0ff7dc3e9793fbaceeb1564c90416fd (patch) | |
tree | 2c61726dd5f60235f63158a3ead0b256d615b8e4 | |
parent | f47240d8e54c70f7b4ffec39c0793c58c1b5a346 (diff) | |
parent | cac67794e94ecdcf334ff44e5219e3350509a789 (diff) | |
download | hurrycurry-72d970f1b0ff7dc3e9793fbaceeb1564c90416fd.tar hurrycurry-72d970f1b0ff7dc3e9793fbaceeb1564c90416fd.tar.bz2 hurrycurry-72d970f1b0ff7dc3e9793fbaceeb1564c90416fd.tar.zst |
Merge branch 'master' of https://codeberg.org/metamuffin/hurrycurry
-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): |