mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- 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:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user