- Fixed Echoing Truth.

This commit is contained in:
Sloth
2011-11-18 10:54:29 +00:00
parent a81339b3c9
commit 56ddea8e21

View File

@@ -342,13 +342,15 @@ public class CardFactoryInstants {
@Override
public boolean canPlayAI() {
final CardList human = CardFactoryUtil.getHumanCreatureAI(this, true);
CardList human = CardFactoryUtil.getHumanCreatureAI(this, true);
human = human.getNotType("Land");
return (4 < AllZone.getPhase().getTurn()) && (0 < human.size());
}
@Override
public void chooseTargetAI() {
final CardList human = CardFactoryUtil.getHumanCreatureAI(this, true);
CardList human = CardFactoryUtil.getHumanCreatureAI(this, true);
human = human.getNotType("Land");
this.setTargetCard(CardFactoryUtil.getBestCreatureAI(human));
}