summaryrefslogtreecommitdiff
path: root/client/menu
diff options
context:
space:
mode:
Diffstat (limited to 'client/menu')
-rw-r--r--client/menu/popup_message.gd8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/menu/popup_message.gd b/client/menu/popup_message.gd
index ab4f5dce..266c1f60 100644
--- a/client/menu/popup_message.gd
+++ b/client/menu/popup_message.gd
@@ -136,10 +136,10 @@ func any_action_just_pressed(actions: Array) -> bool:
return false
func _on_rotate_camera_timeout():
- if not Global.get_setting("has_rotated") and not Global.get_setting("touch_controls"):
+ if not Global.get_profile("has_rotated") and not Global.get_setting("touch_controls"):
display_hint_msg(tr("Use %s to reset the camera view") % display_keybind(tr("arrow keys"), tr("right stick")))
func _on_nametags_timeout():
- if not Global.get_setting("has_seen_nametags"):
- Global.set_setting("has_seen_nametags", true)
- display_hint_msg(tr("Username tags can be enabled in the settings"))
+ if not Global.get_profile("has_seen_nametags") and not Global.get_setting("usernames"):
+ Global.set_profile("has_seen_nametags", true)
+ display_hint_msg(tr("Username tags can be enabled/disabled in the settings"))