* BestowAbility - Fixed that bestow creature cast fizzled instead to enter battlefield as creature enchantment if target left battlefield before resolve of the bestow ability.

This commit is contained in:
LevelX2 2014-01-26 17:17:53 +01:00
parent 4255bd28e5
commit 13d488757a

View file

@ -189,7 +189,7 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
} }
return false; return false;
} }
if (this.getCardType().contains(CardType.CREATURE)) { // e.g. Creature with Bestow (rule confirmation yet missing) if (this.getSpellAbility() instanceof BestowAbility) {
updateOptionalCosts(0); updateOptionalCosts(0);
result = card.putOntoBattlefield(game, fromZone, ability.getId(), controllerId); result = card.putOntoBattlefield(game, fromZone, ability.getId(), controllerId);
return result; return result;