* 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:
LevelX2 2014-02-26 16:54:46 +01:00
parent b837273cb5
commit bceef0ec48

View file

@ -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;