mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
* 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:
parent
4255bd28e5
commit
13d488757a
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ public class Spell<T extends Spell<T>> implements StackObject, Card {
|
|||
}
|
||||
return false;
|
||||
}
|
||||
if (this.getCardType().contains(CardType.CREATURE)) { // e.g. Creature with Bestow (rule confirmation yet missing)
|
||||
if (this.getSpellAbility() instanceof BestowAbility) {
|
||||
updateOptionalCosts(0);
|
||||
result = card.putOntoBattlefield(game, fromZone, ability.getId(), controllerId);
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue