aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-09-28 17:40:09 +0200
committermetamuffin <metamuffin@disroot.org>2024-09-28 17:40:09 +0200
commite73828c35017e552e71620c4fab9745c70f2751e (patch)
tree888165221a9d458be389d70920e15d5dbed3e4c1
parentc78b73c9747d7a25e11791189cc5b97bd503af78 (diff)
downloadhurrycurry-e73828c35017e552e71620c4fab9745c70f2751e.tar
hurrycurry-e73828c35017e552e71620c4fab9745c70f2751e.tar.bz2
hurrycurry-e73828c35017e552e71620c4fab9745c70f2751e.tar.zst
fix #189
-rw-r--r--client/menu/communicate/popup_message/popup_message.gd2
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")]))