diff options
| author | tpart <tpart120@proton.me> | 2025-10-22 23:12:48 +0200 |
|---|---|---|
| committer | tpart <tpart120@proton.me> | 2025-10-22 23:12:48 +0200 |
| commit | dfee542542135e09b1f078f9c8f1df13fcf2f181 (patch) | |
| tree | f16dd79334e2e68fde4ddb83d0826ea552c62144 /client | |
| parent | 04e212f3ac61e9af772d803271875e057e498072 (diff) | |
| download | hurrycurry-dfee542542135e09b1f078f9c8f1df13fcf2f181.tar hurrycurry-dfee542542135e09b1f078f9c8f1df13fcf2f181.tar.bz2 hurrycurry-dfee542542135e09b1f078f9c8f1df13fcf2f181.tar.zst | |
Ignore debug packet in main client
Diffstat (limited to 'client')
| -rw-r--r-- | client/game.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd index d490e61e..62a25f18 100644 --- a/client/game.gd +++ b/client/game.gd @@ -395,7 +395,8 @@ func handle_packet(p): "pause": overlay_score.set_paused(p.state) Global.game_paused = p.state - + "debug": + pass # Only implemented in test client _: push_warning("Unrecognized packet type: %s" % p.type) func system_message(s: String): |