diff options
author | nokoe <nokoe@mailbox.org> | 2024-10-01 16:45:04 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-10-01 16:45:04 +0200 |
commit | 9761f01bbbf5f493a4d303924c296764549425a5 (patch) | |
tree | 0a8bff076c8bb28f02dd68acc16ef3d4cfea77c0 | |
parent | c3260a25bd5558ecc5113c9204cd36726517e646 (diff) | |
download | hurrycurry-9761f01bbbf5f493a4d303924c296764549425a5.tar hurrycurry-9761f01bbbf5f493a4d303924c296764549425a5.tar.bz2 hurrycurry-9761f01bbbf5f493a4d303924c296764549425a5.tar.zst |
use correct command to create bots
-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 d595444e..00c16cef 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -160,7 +160,7 @@ func _on_controller_button_pressed(): if bots_enabled: for k in bot_counts.keys(): for i in range(bot_counts[k]): - start_msg += "\nsummon-bot %s" % k + start_msg += "\ncreate-bot %s" % k game.mp.send_chat(game.player_id, start_msg) Sound.play_music("stop") # TODO: Game music enter |