diff options
| -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): |