forked from External/mage
* Fixed that non creature spells with morph could not be countered with Remove if cast with morph.
This commit is contained in:
parent
8d06c23602
commit
cec9d00a59
3 changed files with 15 additions and 8 deletions
|
|
@ -2768,7 +2768,9 @@ public abstract class PlayerImpl implements Player, Serializable {
|
|||
case STATIC:
|
||||
if (card.getCardType().contains(CardType.LAND) && ability instanceof AlternativeSourceCosts) {
|
||||
if (canLandPlayAlternateSourceCostsAbility(card, available, ability, game)) { // e.g. Land with Morph
|
||||
playable.add(card.getId());
|
||||
if (game.canPlaySorcery(getId())) {
|
||||
playable.add(card.getId());
|
||||
}
|
||||
break Abilities;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue