rework warp implementation (#13874)

This commit is contained in:
Evan Kranzler 2025-07-22 16:32:41 -04:00 committed by GitHub
parent 8aafba38b9
commit cdf23ac18a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 57 additions and 22 deletions

View file

@ -8,7 +8,6 @@ import mage.abilities.costs.mana.ManaCosts;
import mage.abilities.keyword.BestowAbility;
import mage.abilities.keyword.PrototypeAbility;
import mage.abilities.keyword.TransformAbility;
import mage.abilities.keyword.WarpAbility;
import mage.cards.*;
import mage.constants.*;
import mage.counters.Counter;
@ -422,7 +421,6 @@ public class Spell extends StackObjectImpl implements Card {
} else {
MageObjectReference mor = new MageObjectReference(getSpellAbility());
game.storePermanentCostsTags(mor, getSpellAbility());
WarpAbility.addDelayedTrigger(getSpellAbility(), game);
return controller.moveCards(card, Zone.BATTLEFIELD, ability, game, false, faceDown, false, null);
}
}