aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authortpart <tpart120@proton.me>2024-09-19 22:30:31 +0200
committertpart <tpart120@proton.me>2024-09-19 22:30:31 +0200
commit192c14309acc49b085495510fd7c4adf9bb6e35d (patch)
tree6b0ef0d19c42c654f9467a22bc3bd58613c4b320 /client
parentaa3adc2d7a4214297a43e2bc22d79c8477ef90fa (diff)
downloadhurrycurry-192c14309acc49b085495510fd7c4adf9bb6e35d.tar
hurrycurry-192c14309acc49b085495510fd7c4adf9bb6e35d.tar.bz2
hurrycurry-192c14309acc49b085495510fd7c4adf9bb6e35d.tar.zst
Fix error message about non-existent setting
Diffstat (limited to 'client')
-rw-r--r--client/menu/popup_message/popup_message.gd2
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"))