mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -08:00
* ReturnFromGraveyardToBattlefieldTargetEffect fixed that the target creature came back always under the owner control instead of under control of the controller of the effect (fixed cards: Fated Return, Rise from the Grave, Nighteyes The Desecrator, Debtors' Knell, Grim Return, Ashen Powder, Beacon of Unrest, Reanimate).
This commit is contained in:
parent
b837273cb5
commit
bceef0ec48
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ public class ReturnFromGraveyardToBattlefieldTargetEffect extends OneShotEffect<
|
|||
for (UUID targetId: getTargetPointer().getTargets(game, source)) {
|
||||
Card card = game.getCard(targetId);
|
||||
if (card != null) {
|
||||
Player player = game.getPlayer(card.getOwnerId());
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player != null) {
|
||||
if(player.putOntoBattlefieldWithInfo(card, game, Zone.GRAVEYARD, source.getSourceId(), tapped)){
|
||||
result = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue