diff options
author | tpart <tpart120@proton.me> | 2024-09-02 18:58:23 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-02 18:58:23 +0200 |
commit | 1b1d276c83e48d38e10277caf18a260871ce80a5 (patch) | |
tree | 9450f61c587dc9272884178010c03680faf646fc /client/menu | |
parent | f3df4fc0699db41a501fd6724d9d7d0e98af40bd (diff) | |
download | hurrycurry-1b1d276c83e48d38e10277caf18a260871ce80a5.tar hurrycurry-1b1d276c83e48d38e10277caf18a260871ce80a5.tar.bz2 hurrycurry-1b1d276c83e48d38e10277caf18a260871ce80a5.tar.zst |
Fix more action typos
Diffstat (limited to 'client/menu')
-rw-r--r-- | client/menu/popup_message.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/popup_message.gd b/client/menu/popup_message.gd index 86b0ee2b..90e86faa 100644 --- a/client/menu/popup_message.gd +++ b/client/menu/popup_message.gd @@ -95,7 +95,7 @@ func stop_game_hints(): func _input(_event): if Input.is_action_just_pressed("boost"): Global.set_hint("has_boosted", true) - if any_action_just_pressed(["forward", "backwards", "left", "right"]): + if any_action_just_pressed(["forwards", "backwards", "left", "right"]): Global.set_hint("has_moved", true) if any_action_just_pressed(["rotate_left", "rotate_right", "rotate_up", "rotate_down"]): if not Global.get_hint("has_reset"): |