diff options
author | metamuffin <metamuffin@disroot.org> | 2025-09-03 20:52:26 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-09-03 20:52:26 +0200 |
commit | 26c04073e47ba92fd777f531d5be49ef3eb3996c (patch) | |
tree | af874329d180d27cbe4697aae8c79eb7bbb77afb /client | |
parent | 1cf6ea254836817a6d4dff68a38d123aeba4dc36 (diff) | |
download | hurrycurry-26c04073e47ba92fd777f531d5be49ef3eb3996c.tar hurrycurry-26c04073e47ba92fd777f531d5be49ef3eb3996c.tar.bz2 hurrycurry-26c04073e47ba92fd777f531d5be49ef3eb3996c.tar.zst |
dont open ingame menu in replays
Diffstat (limited to 'client')
-rw-r--r-- | client/game.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/game.gd b/client/game.gd index 89a8f0f1..27c545f2 100644 --- a/client/game.gd +++ b/client/game.gd @@ -286,7 +286,7 @@ func handle_packet(p): if lobby and join_state == JoinState.SPECTATING: if in_lobby: toggle_join() - else: + elif not is_replay: menu.submenu("res://menu/ingame.tscn") "score": if p.time_remaining != null: |