diff options
| author | tpart <tpart120@proton.me> | 2026-03-01 00:18:47 +0100 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2026-03-01 00:18:47 +0100 |
| commit | 453684af1095c1fd90aaa56c069184b921c02448 (patch) | |
| tree | 6908715045c50d3d17ba15ef943e178d80933cb5 | |
| parent | 9a5936093a9fb99ddb3e6959f72d9c612638f76d (diff) | |
| download | hurrycurry-453684af1095c1fd90aaa56c069184b921c02448.tar hurrycurry-453684af1095c1fd90aaa56c069184b921c02448.tar.bz2 hurrycurry-453684af1095c1fd90aaa56c069184b921c02448.tar.zst | |
Bump protocol version
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | client/game.gd | 1 | ||||
| -rw-r--r-- | client/multiplayer.gd | 2 | ||||
| -rw-r--r-- | server/protocol/Cargo.toml | 2 |
4 files changed, 3 insertions, 4 deletions
@@ -1126,7 +1126,7 @@ dependencies = [ [[package]] name = "hurrycurry-protocol" -version = "12.0.0" +version = "13.0.0" dependencies = [ "glam", "serde", diff --git a/client/game.gd b/client/game.gd index ae21d8a0..bf7831ef 100644 --- a/client/game.gd +++ b/client/game.gd @@ -99,7 +99,6 @@ func handle_packet(p): for tile in p["data"]["tile_collide"]: tile_collide.append(tile_names[int(tile)]) for tile in p["data"]["tile_interactable_empty"]: tile_interactable_empty.append(tile_names[int(tile)]) for tile in p["data"]["tile_placeable_any"]: tile_placeable_any.append(tile_names[int(tile)]) - print(tile_placeable_any) for tile in p["data"]["tile_placeable_items"]: tile_placeable_items[tile_names[int(tile)]] = p["data"]["tile_placeable_items"][tile].map(func(x): return item_names[int(x)]) maps = p["data"]["maps"] diff --git a/client/multiplayer.gd b/client/multiplayer.gd index 9b5b30b9..08c2493c 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -19,7 +19,7 @@ extends Node signal packet(packet: Dictionary) signal connection_closed() -static var VERSION_MAJOR: int = 12 +static var VERSION_MAJOR: int = 13 static var VERSION_MINOR: int = 0 var connected := false diff --git a/server/protocol/Cargo.toml b/server/protocol/Cargo.toml index f439f4fd..07acdeaf 100644 --- a/server/protocol/Cargo.toml +++ b/server/protocol/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hurrycurry-protocol" -version = "12.0.0" +version = "13.0.0" edition = "2024" [dependencies] |