From dfee542542135e09b1f078f9c8f1df13fcf2f181 Mon Sep 17 00:00:00 2001 From: tpart Date: Wed, 22 Oct 2025 23:12:48 +0200 Subject: Ignore debug packet in main client --- client/game.gd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'client') 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): -- cgit v1.3