diff --git a/core/src/com/unciv/logic/GameInfo.kt b/core/src/com/unciv/logic/GameInfo.kt index 09a8261abb..70c3449e30 100644 --- a/core/src/com/unciv/logic/GameInfo.kt +++ b/core/src/com/unciv/logic/GameInfo.kt @@ -78,7 +78,8 @@ class GameInfo { switchTurn() while(thisPlayer.playerType==PlayerType.AI){ - if(!thisPlayer.isDefeated()) NextTurnAutomation().automateCivMoves(thisPlayer) + if(thisPlayer.isBarbarian() || !thisPlayer.isDefeated()) + NextTurnAutomation().automateCivMoves(thisPlayer) switchTurn() }