mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fix #9452
This commit is contained in:
parent
76fcfafc8b
commit
9961ac2d48
2 changed files with 10 additions and 1 deletions
|
@ -107,6 +107,11 @@ public abstract class MeldCard extends CardImpl {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isTransformable() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean addCounters(Counter counter, UUID playerAddingCounters, Ability source, Game game, List<UUID> appliedEffects) {
|
||||
if (this.isMelded(game)) {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.game.permanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -23,4 +22,9 @@ public class PermanentMeld extends PermanentCard {
|
|||
return this.getCard().getManaValue();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isTransformable() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue