mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* 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:
parent
af30ce399c
commit
bfb54ca112
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue