diff options
author | metamuffin <metamuffin@disroot.org> | 2024-11-27 15:50:33 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-11-27 15:50:33 +0100 |
commit | 2bb44c0bc08cf8033de78e8678e8c715a65a5635 (patch) | |
tree | fb08c7bed657c6034ac614f9b900185d21b05754 | |
parent | 696dbdd2238e919bffa756fff1f02ace90a81ecb (diff) | |
download | hurrycurry-2bb44c0bc08cf8033de78e8678e8c715a65a5635.tar hurrycurry-2bb44c0bc08cf8033de78e8678e8c715a65a5635.tar.bz2 hurrycurry-2bb44c0bc08cf8033de78e8678e8c715a65a5635.tar.zst |
set protocol version
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | client/multiplayer.gd | 4 | ||||
-rw-r--r-- | server/protocol/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -1194,7 +1194,7 @@ dependencies = [ [[package]] name = "hurrycurry-protocol" -version = "7.4.0" +version = "7.5.0" dependencies = [ "bincode", "glam", diff --git a/client/multiplayer.gd b/client/multiplayer.gd index 9e48ac20..7e05e759 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -21,8 +21,8 @@ extends Node signal packet(packet: Dictionary) signal connection_closed() -static var VERSION_MAJOR: int = 8 -static var VERSION_MINOR: int = 0 +static var VERSION_MAJOR: int = 7 +static var VERSION_MINOR: int = 5 var connected := false var socket := WebSocketPeer.new() diff --git a/server/protocol/Cargo.toml b/server/protocol/Cargo.toml index f600fa8a..44533f9d 100644 --- a/server/protocol/Cargo.toml +++ b/server/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-protocol" -version = "7.4.0" +version = "7.5.0" edition = "2021" [dependencies] |