summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-08 22:48:46 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-08 22:48:46 +0200
commit72d970f1b0ff7dc3e9793fbaceeb1564c90416fd (patch)
tree2c61726dd5f60235f63158a3ead0b256d615b8e4
parentf47240d8e54c70f7b4ffec39c0793c58c1b5a346 (diff)
parentcac67794e94ecdcf334ff44e5219e3350509a789 (diff)
downloadhurrycurry-72d970f1b0ff7dc3e9793fbaceeb1564c90416fd.tar
hurrycurry-72d970f1b0ff7dc3e9793fbaceeb1564c90416fd.tar.bz2
hurrycurry-72d970f1b0ff7dc3e9793fbaceeb1564c90416fd.tar.zst
Merge branch 'master' of https://codeberg.org/metamuffin/hurrycurry
-rw-r--r--COPYING3
-rw-r--r--client/multiplayer.gd1
2 files changed, 4 insertions, 0 deletions
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
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):