mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 20:11:59 -08:00
[NEO] fixed Go-Shintai of Lost Wisdom milling controller instead of targeted player (fixes #8701)
This commit is contained in:
parent
5eb57d2283
commit
957eca8d87
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue