mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
- Fixed Echoing Truth.
This commit is contained in:
@@ -342,13 +342,15 @@ public class CardFactoryInstants {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canPlayAI() {
|
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());
|
return (4 < AllZone.getPhase().getTurn()) && (0 < human.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void chooseTargetAI() {
|
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));
|
this.setTargetCard(CardFactoryUtil.getBestCreatureAI(human));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user