diff options
author | tpart <tpart120@proton.me> | 2024-08-13 00:27:54 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2024-08-13 00:27:54 +0200 |
commit | ebf97951b163a52f9969097f76dbeab1272a4d2c (patch) | |
tree | 5f8e6b50e5359b112ca5646d4c1c743b5406ceeb /client | |
parent | 5d35ff1e5a2b9181beaff4ebe918d7889f807de9 (diff) | |
download | hurrycurry-ebf97951b163a52f9969097f76dbeab1272a4d2c.tar hurrycurry-ebf97951b163a52f9969097f76dbeab1272a4d2c.tar.bz2 hurrycurry-ebf97951b163a52f9969097f76dbeab1272a4d2c.tar.zst |
Fix: Also select map when using controller
Diffstat (limited to 'client')
-rw-r--r-- | client/menu/lobby.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/menu/lobby.gd b/client/menu/lobby.gd index f86be916..3d8401d0 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -56,6 +56,7 @@ func initialize(): b.name = m b.text = "%s (%d)" % [game.maps[m]["name"], game.maps[m]["players"]] b.pressed.connect(select_map.bind(i)) + b.focus_entered.connect(select_map.bind(i)) map_list.add_child(b) i += 1 select_map(0) |