diff options
author | tpart <tpart120@proton.me> | 2025-03-23 21:56:40 +0100 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-03-23 21:56:40 +0100 |
commit | 61a03acb5cca8803af0d5e51a01d42f5c6a789d2 (patch) | |
tree | e14478435f82385f418451d19c2bc5ce92d7b63a /client/menu/lobby.gd | |
parent | 364f806ccded1a15b192999de9ae79296bb43e2a (diff) | |
download | hurrycurry-61a03acb5cca8803af0d5e51a01d42f5c6a789d2.tar hurrycurry-61a03acb5cca8803af0d5e51a01d42f5c6a789d2.tar.bz2 hurrycurry-61a03acb5cca8803af0d5e51a01d42f5c6a789d2.tar.zst |
Replace controller buttons with selectable versions; Clean up code; Fix #251
Diffstat (limited to 'client/menu/lobby.gd')
-rw-r--r-- | client/menu/lobby.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/menu/lobby.gd b/client/menu/lobby.gd index 00c16cef..3405cebb 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -153,7 +153,7 @@ func _on_right_pressed(): selected_map = (selected_map + 1) % map_count select_map(selected_map) -func _on_controller_button_pressed(): +func _on_start_pressed(): if selected_map_name != null: var start_msg := "/start %s" % selected_map_name |