diff --git a/Assets/Scripts/Gameplay/GameplayManager.cs b/Assets/Scripts/Gameplay/GameplayManager.cs index d01bf32..7f1f112 100644 --- a/Assets/Scripts/Gameplay/GameplayManager.cs +++ b/Assets/Scripts/Gameplay/GameplayManager.cs @@ -755,15 +755,10 @@ public class GameplayManager : MonoBehaviour, IBase, IBootLoader, IDataLoader nextTile.InitPlayerPawn(playerPawn, currentPlayerTypeTurn); } - else - { - if (playerPawn.IsBotPlayer && CanRollDiceAgain) - CheckDiceRollForBot(playerPawn); - } + SwitchPlayer(playerPawn); if (!CanRollDiceAgain) { - SwitchPlayer(playerPawn); SetCanRollDiceForUser(playerPawn.PlayerType, true); } }