aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/menu/popup_message/popup_message.gd4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/menu/popup_message/popup_message.gd b/client/menu/popup_message/popup_message.gd
index 6413a887..3e479b17 100644
--- a/client/menu/popup_message/popup_message.gd
+++ b/client/menu/popup_message/popup_message.gd
@@ -210,14 +210,14 @@ func any_action_just_pressed(actions: Array) -> bool:
func _on_rotate_camera_timeout():
if not Global.get_hint("has_rotated") and not Global.using_touch:
- display_hint_msg(tr("c.hint.rotate") % ", ".join(
+ display_hint_msg(tr("c.hint.rotate").format([", ".join(
[
display_keybind("rotate_up"),
display_keybind("rotate_left"),
display_keybind("rotate_down"),
display_keybind("rotate_right")
]
- ))
+ )]))
func _on_nametags_timeout():
if not Global.get_hint("has_seen_nametags") and not Global.get_setting("gameplay.usernames"):