- Harrow should be cascadable now.

- Set max life in fantasy quest to 30.
- Fixed the 1.5 Java incompatibility for the basic landsearchers.
This commit is contained in:
jendave
2011-08-06 04:25:48 +00:00
parent 64c5184017
commit be9df4e9f1
4 changed files with 48 additions and 5 deletions

View File

@@ -17766,9 +17766,14 @@ public class CardFactory implements NewConstants {
String player = card.getController();
PlayerZone play = AllZone.getZone(Constant.Zone.Play, player);
CardList choice = new CardList(play.getCards());
choice = choice.getType("Land");
choice = choice.getType("Land");
boolean free = false;
if (this.isFree())
free = true;
if (player.equals(Constant.Player.Human)) {
stopSetNext(CardFactoryUtil.input_sacrifice(spell, choice, "Select a land to sacrifice."));
stopSetNext(CardFactoryUtil.input_sacrifice(spell, choice, "Select a land to sacrifice.", free));
}
}
};