* Deflecting Palm - Fixed a bug that the to the source controller redirected damage of Deflecting Palm could not be redirected to an existing planeswalker of that controller.

This commit is contained in:
LevelX2 2015-11-18 17:38:48 +01:00
parent af30ce399c
commit bfb54ca112

View file

@ -109,6 +109,7 @@ public class PlaneswalkerRedirectionEffect extends RedirectionEffect {
if (permanent != null) {
return permanent.getControllerId();
}
return null;
// for effects like Deflecting Palm (could be wrong if card was played multiple times by different players)
return game.getContinuousEffects().getControllerOfSourceId(sourceId);
}
}