diff options
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 0cdabfdd..4c226936 100644 --- a/client/menu/lobby.gd +++ b/client/menu/lobby.gd @@ -169,7 +169,7 @@ func _on_start_pressed(): for i in range(bot_counts[k]): start_msg += "\ncreate-bot %s" % k - game.mp.send_chat(game.player_id, start_msg) + game.mp.send_chat(game.my_player_id, start_msg) Sound.play_music("stop") # TODO: Game music enter func _on_game_join_state_updated(state: Game.JoinState): |