- Fixed Phantasmal Terrain.

This commit is contained in:
Sloth
2013-01-06 14:26:22 +00:00
parent e0e4e8b9fe
commit c2d838c611

View File

@@ -144,6 +144,7 @@ public class ChooseTypeEffect extends SpellEffect {
} else { } else {
// TODO AttachAI for ChosenType should have the exact same logic // TODO AttachAI for ChosenType should have the exact same logic
card.setChosenType("Island"); card.setChosenType("Island");
valid = true;
} }
} }
} else if (type.equals("Land")) { } else if (type.equals("Land")) {
@@ -162,6 +163,8 @@ public class ChooseTypeEffect extends SpellEffect {
} else { } else {
// TODO // TODO
// computer will need to choose a type // computer will need to choose a type
card.setChosenType("Island");
valid = true;
} }
} }
} // end if-else if } // end if-else if