- Added the missing AILogic for Lurebound Scarecrow and fixed the script.

This commit is contained in:
Sloth
2011-11-16 07:27:51 +00:00
parent fcf7e756e4
commit 4e5a67fa29
2 changed files with 6 additions and 1 deletions

View File

@@ -657,6 +657,10 @@ public final class AbilityFactoryChoose {
}
chosen = CardFactoryUtil.getMostProminentColor(list);
}
if (logic.equals("MostProminentComputerControls")) {
chosen = CardFactoryUtil.getMostProminentColor(AllZone.getComputerPlayer()
.getCardsIn(Zone.Battlefield));
}
if (logic.equals("MostProminentPermanent")) {
final CardList list = AllZoneUtil.getCardsIn(Zone.Battlefield);
chosen = CardFactoryUtil.getMostProminentColor(list);