diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-28 17:40:09 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-28 17:40:09 +0200 |
commit | e73828c35017e552e71620c4fab9745c70f2751e (patch) | |
tree | 888165221a9d458be389d70920e15d5dbed3e4c1 /client | |
parent | c78b73c9747d7a25e11791189cc5b97bd503af78 (diff) | |
download | hurrycurry-e73828c35017e552e71620c4fab9745c70f2751e.tar hurrycurry-e73828c35017e552e71620c4fab9745c70f2751e.tar.bz2 hurrycurry-e73828c35017e552e71620c4fab9745c70f2751e.tar.zst |
fix #189
Diffstat (limited to 'client')
-rw-r--r-- | client/menu/communicate/popup_message/popup_message.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/communicate/popup_message/popup_message.gd b/client/menu/communicate/popup_message/popup_message.gd index 513d3840..fdcc51a1 100644 --- a/client/menu/communicate/popup_message/popup_message.gd +++ b/client/menu/communicate/popup_message/popup_message.gd @@ -213,7 +213,7 @@ func _on_rotate_camera_timeout(): )])) func _on_join_while_running_timeout(): - if not game.is_joined and not Global.get_hint("has_seen_join_while_running"): + if not game.join_state == Game.JoinState.JOINED and not Global.get_hint("has_seen_join_while_running"): Global.set_hint("has_seen_join_while_running", true) display_hint_msg(tr("c.hint.join_while_running").format([display_keybind("menu")])) |