diff options
author | tpart <tpart120@proton.me> | 2024-09-17 15:55:43 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-09-17 15:56:20 +0200 |
commit | c953a601500eead8161baf012e338e3ea496ceaf (patch) | |
tree | 59867880437e86d4e1b74720210c70770b50852f /client/menu/menu.gd | |
parent | ea5e8bad363a6e490c787b0e5f13bb6defd4c450 (diff) | |
download | hurrycurry-c953a601500eead8161baf012e338e3ea496ceaf.tar hurrycurry-c953a601500eead8161baf012e338e3ea496ceaf.tar.bz2 hurrycurry-c953a601500eead8161baf012e338e3ea496ceaf.tar.zst |
Refactor hints system to use new input manager; Add input manager helper function; Fix lots of bugs; Update translations
Diffstat (limited to 'client/menu/menu.gd')
-rw-r--r-- | client/menu/menu.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/menu.gd b/client/menu/menu.gd index 30a9ca7d..52a9bd7d 100644 --- a/client/menu/menu.gd +++ b/client/menu/menu.gd @@ -125,6 +125,6 @@ func update_parent_menu(node: Node): func _input(_event): if popup != null: return if Time.get_ticks_msec() - open_since < 100: return - if Input.is_action_just_pressed("ui_cancel"): + if Input.is_action_just_pressed("menu"): Sound.play_click() exit() |