diff options
Diffstat (limited to 'client')
| -rw-r--r-- | client/game.gd | 2 | ||||
| -rw-r--r-- | client/multiplayer.gd | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/game.gd b/client/game.gd index 4d759e95..13eedcda 100644 --- a/client/game.gd +++ b/client/game.gd @@ -293,7 +293,7 @@ func handle_packet(p): player.clear_item_message() player.clear_effect() overlay_pinned_messages.clear_item(p.player) - "effect": + "effect2": if not "location" in p: return # ignore old server format if "player" in p.location: players[p.location.player[0]].effect_message(p.name) elif "tile" in p.location: pass # TODO create effect at tile diff --git a/client/multiplayer.gd b/client/multiplayer.gd index 52efce20..5ce5bb93 100644 --- a/client/multiplayer.gd +++ b/client/multiplayer.gd @@ -20,7 +20,7 @@ signal packet(packet: Dictionary) signal connection_closed() static var VERSION_MAJOR: int = 12 -static var VERSION_MINOR: int = 1 +static var VERSION_MINOR: int = 0 var connected := false var socket := WebSocketPeer.new() |