diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-10 22:55:38 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-10 22:55:38 +0200 |
commit | 71499464dbb279bd268dd2dcd5a653c3a7f50a68 (patch) | |
tree | ed805dd89a6909bdf687b52b77334afa22d234eb /client/menu/lobby.gd | |
parent | a02c1d31f4d2de92388dcc8c07a602e62f5ddbbe (diff) | |
download | hurrycurry-71499464dbb279bd268dd2dcd5a653c3a7f50a68.tar hurrycurry-71499464dbb279bd268dd2dcd5a653c3a7f50a68.tar.bz2 hurrycurry-71499464dbb279bd268dd2dcd5a653c3a7f50a68.tar.zst |
update client to new protocol
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 9991fbbf..1d4674cd 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -96,7 +96,7 @@ func _on_right_pressed(): func _on_controller_button_pressed(): if selected_map_name != null: - game.mp.send_chat("/start %s" % selected_map_name) + game.mp.send_chat(game.player_id, "/start %s" % selected_map_name) Sound.play_music("stop") # TODO: Game music enter func _on_join_spectate_pressed(): |