[NEO] fixed Go-Shintai of Lost Wisdom milling controller instead of targeted player (fixes #8701)

This commit is contained in:
Evan Kranzler 2022-02-14 17:08:20 -05:00
parent 5eb57d2283
commit 957eca8d87

View file

@ -54,7 +54,9 @@ public class DoWhenCostPaid extends OneShotEffect {
cost.clearPaid();
int bookmark = game.bookmarkState();
if (cost.pay(source, game, source, player.getId(), false)) {
ability.getEffects().setTargetPointer(getTargetPointer());
if (ability.getTargets().isEmpty()) {
ability.getEffects().setTargetPointer(getTargetPointer());
}
game.fireReflexiveTriggeredAbility(ability, source);
player.resetStoredBookmark(game);
return true;