mirror of
https://github.com/correl/mage.git
synced 2025-01-14 19:12:07 +00:00
Fixes Flickerform to return the exiled creature under the creature's owner's control, instead of its own owner's control. #5084
This commit is contained in:
parent
09f5af154e
commit
9f470e2bd0
1 changed files with 2 additions and 1 deletions
|
@ -156,8 +156,9 @@ class FlickerformReturnEffect extends OneShotEffect {
|
|||
}
|
||||
ExileZone exileZone = game.getExile().getExileZone(exileZoneId);
|
||||
Card enchantedCard = exileZone.get(enchantedCardId, game);
|
||||
Player owner = game.getPlayer(enchantedCard.getOwnerId());
|
||||
if (enchantedCard != null) {
|
||||
controller.moveCards(enchantedCard, Zone.BATTLEFIELD, source, game);
|
||||
owner.moveCards(enchantedCard, Zone.BATTLEFIELD, source, game);
|
||||
Permanent newPermanent = game.getPermanent(enchantedCardId);
|
||||
if (newPermanent != null) {
|
||||
Set<Card> toBattlefieldAttached = new HashSet<Card>();
|
||||
|
|
Loading…
Reference in a new issue