aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-08-15 23:22:05 +0200
committermetamuffin <metamuffin@disroot.org>2024-08-15 23:22:20 +0200
commit7a47735202f0d36e3bddd1abaefabeb55ef2f02b (patch)
tree2d28f3e92ae06e7722f9be4b95d1734f7ed7acf8
parenta913b3f9db0faa9f498a2951de8d3a6da71bfa01 (diff)
downloadhurrycurry-7a47735202f0d36e3bddd1abaefabeb55ef2f02b.tar
hurrycurry-7a47735202f0d36e3bddd1abaefabeb55ef2f02b.tar.bz2
hurrycurry-7a47735202f0d36e3bddd1abaefabeb55ef2f02b.tar.zst
protocol 5
-rw-r--r--client/menu/credits.gd1
-rw-r--r--server/protocol/src/lib.rs2
2 files changed, 1 insertions, 2 deletions
diff --git a/client/menu/credits.gd b/client/menu/credits.gd
index a7474877..030ccd06 100644
--- a/client/menu/credits.gd
+++ b/client/menu/credits.gd
@@ -56,7 +56,6 @@ func _ready():
text += "[b]%s[/b]\n\n" % section[0]
text += "[table=3]"
for entry in section[1]:
- print(entry)
text += "[cell][right]%s[/right][/cell]" % entry[0]
text += "[cell][left]%s[/left][/cell]" % entry[1]
text += "[cell][left]%s[/left][/cell]" % entry[2]
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs
index ee9fc0a3..7b3b39a5 100644
--- a/server/protocol/src/lib.rs
+++ b/server/protocol/src/lib.rs
@@ -27,7 +27,7 @@ pub use glam;
pub mod movement;
-pub const VERSION: (u32, u32) = (4, 0);
+pub const VERSION: (u32, u32) = (5, 0);
pub const BINCODE_CONFIG: Configuration<LittleEndian, Varint, Limit<4096>> =
standard().with_limit();