Resolved #1440 - Barbarians now function again!

This commit is contained in:
Yair Morgenstern
2019-12-12 23:57:26 +02:00
parent aa73fa130e
commit 76c09ad59c

View File

@ -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()
}