- Fixed Goblin Charbelcher not recognizing dual lands as Mountains and not putting the revealed cards on the bottom of the library (NOTE: The order still can't be chosen).

This commit is contained in:
Sloth
2011-11-20 13:59:27 +00:00
parent 7b1fc210fa
commit dfd9c9077f

View File

@@ -970,12 +970,15 @@ public abstract class AbstractCardFactory implements CardFactoryInterface {
damage--;
}
if (crd.getName().equals("Mountain")) {
if (crd.isType("Mountain")) {
damage *= 2;
}
}
} // while
GuiUtils.getChoiceOptional("Revealed cards:", revealed.toArray());
for (Card revealedCard : revealed) {
AllZone.getGameAction().moveToBottomOfLibrary(revealedCard);
}
if (this.getTargetCard() != null) {
if (AllZoneUtil.isCardInPlay(this.getTargetCard())