mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
-Small fix in Riding the Dilu Horse.
-Cycling/Transmute/... + future other "hand abilities" should work on lands now. -Fixed a lot of bugs in the combat code. -Added Lichentrope, Phytohydra and Callous Giant.
This commit is contained in:
@@ -17217,10 +17217,12 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
|
||||
return c.isCreature() && !c.getKeyword().contains("Horsemanship") && !c.getKeyword().contains("Defender");
|
||||
}
|
||||
});
|
||||
|
||||
Card c = CardFactoryUtil.AI_getBestCreature(list, card);
|
||||
setTargetCard(c);
|
||||
return list.size() > 0;
|
||||
if (list.size() > 0) {
|
||||
Card c = CardFactoryUtil.AI_getBestCreature(list, card);
|
||||
setTargetCard(c);
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public void resolve()
|
||||
|
||||
Reference in New Issue
Block a user