diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-18 15:43:35 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-18 15:43:35 +0200 |
commit | 1dd3f549debdffd85639d74248a12dd884c5a59b (patch) | |
tree | b6d01b5033fb66daedf48704903e8a2135ad7325 | |
parent | 403d415fba9a88eaef12e3ab0485d8243d07097f (diff) | |
download | hurrycurry-1dd3f549debdffd85639d74248a12dd884c5a59b.tar hurrycurry-1dd3f549debdffd85639d74248a12dd884c5a59b.tar.bz2 hurrycurry-1dd3f549debdffd85639d74248a12dd884c5a59b.tar.zst |
increase protocol version
-rw-r--r-- | server/protocol/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/protocol/src/lib.rs b/server/protocol/src/lib.rs index 14c410b3..d9e8f11e 100644 --- a/server/protocol/src/lib.rs +++ b/server/protocol/src/lib.rs @@ -30,7 +30,7 @@ pub use glam; pub mod movement; -pub const VERSION: (u32, u32) = (1, 0); +pub const VERSION: (u32, u32) = (2, 0); pub const BINCODE_CONFIG: Configuration<LittleEndian, Varint, Limit<4096>> = standard().with_limit(); |