* Fixed that non creature spells with morph could not be countered with Remove if cast with morph.

This commit is contained in:
LevelX2 2017-01-24 23:08:47 +01:00
parent 8d06c23602
commit cec9d00a59
3 changed files with 15 additions and 8 deletions

View file

@ -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;
}
}