- The AI will now react better when faced with creatures with "CARDNAME can't attack or block alone.".

This commit is contained in:
Sloth
2012-07-11 15:18:45 +00:00
parent 285de25f5e
commit 5839cc4385

View File

@@ -99,11 +99,6 @@ public class CombatUtil {
}
}
final CardList list = AllZoneUtil.getCreaturesInPlay(blocker.getController());
if (list.size() < 2 && blocker.hasKeyword("CARDNAME can't attack or block alone.")) {
return false;
}
if ((combat.getAllBlockers().size() > 0) && AllZoneUtil.isCardInPlay("Dueling Grounds")) {
return false;
}
@@ -136,6 +131,11 @@ public class CombatUtil {
return false;
}
final CardList list = AllZoneUtil.getCreaturesInPlay(blocker.getController());
if (list.size() < 2 && blocker.hasKeyword("CARDNAME can't attack or block alone.")) {
return false;
}
return true;
}