diff options
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/popup_message/popup_message.gd | 5 | ||||
-rw-r--r-- | client/menu/popup_message/popup_message.tscn | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/client/menu/popup_message/popup_message.gd b/client/menu/popup_message/popup_message.gd index 3e479b17..6c2c2c0e 100644 --- a/client/menu/popup_message/popup_message.gd +++ b/client/menu/popup_message/popup_message.gd @@ -219,11 +219,6 @@ func _on_rotate_camera_timeout(): ] )])) -func _on_nametags_timeout(): - 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")) - func _on_join_while_running_timeout(): if not game.is_joined and not Global.get_hint("has_seen_join_while_running"): Global.set_hint("has_seen_join_while_running", true) diff --git a/client/menu/popup_message/popup_message.tscn b/client/menu/popup_message/popup_message.tscn index 08155529..659a5b7e 100644 --- a/client/menu/popup_message/popup_message.tscn +++ b/client/menu/popup_message/popup_message.tscn @@ -123,10 +123,6 @@ one_shot = true wait_time = 135.0 one_shot = true -[node name="Nametags" type="Timer" parent="AutoHintTimers"] -wait_time = 160.0 -one_shot = true - [node name="Reset" type="Timer" parent="."] wait_time = 10.0 one_shot = true @@ -148,6 +144,5 @@ visible = false [connection signal="timeout" from="AutoHintTimers/Interact" to="." method="_on_interact_timeout"] [connection signal="timeout" from="AutoHintTimers/RotateCamera" to="." method="_on_rotate_camera_timeout"] [connection signal="timeout" from="AutoHintTimers/Zoom" to="." method="_on_zoom_timeout"] -[connection signal="timeout" from="AutoHintTimers/Nametags" to="." method="_on_nametags_timeout"] [connection signal="timeout" from="Reset" to="." method="_on_reset_timeout"] [connection signal="timeout" from="JoinWhileRunning" to="." method="_on_join_while_running_timeout"] |