aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();