diff options
author | tpart <tpart120@proton.me> | 2024-09-19 22:30:31 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-19 22:30:31 +0200 |
commit | 192c14309acc49b085495510fd7c4adf9bb6e35d (patch) | |
tree | 6b0ef0d19c42c654f9467a22bc3bd58613c4b320 | |
parent | aa3adc2d7a4214297a43e2bc22d79c8477ef90fa (diff) | |
download | hurrycurry-192c14309acc49b085495510fd7c4adf9bb6e35d.tar hurrycurry-192c14309acc49b085495510fd7c4adf9bb6e35d.tar.bz2 hurrycurry-192c14309acc49b085495510fd7c4adf9bb6e35d.tar.zst |
Fix error message about non-existent setting
-rw-r--r-- | client/menu/popup_message/popup_message.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/popup_message/popup_message.gd b/client/menu/popup_message/popup_message.gd index 0df6af76..3ed08cd7 100644 --- a/client/menu/popup_message/popup_message.gd +++ b/client/menu/popup_message/popup_message.gd @@ -213,7 +213,7 @@ func _on_rotate_camera_timeout(): )) func _on_nametags_timeout(): - if not Global.get_hint("has_seen_nametags") and not Global.get_setting("graphics.usernames"): + if not Global.get_hint("has_seen_nametags") and not Global.get_setting("gameplay.usernames"): Global.set_hint("has_seen_nametags", true) display_hint_msg(tr("c.hint.username_tags")) |