From 4a6ff5593edbd6982503b5757d64ebbce2574f1c Mon Sep 17 00:00:00 2001 From: Zzooouhh Date: Tue, 19 Dec 2017 01:40:44 +0100 Subject: [PATCH] More edits --- .../DoUnlessTargetPlayerOrTargetsControllerPaysEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/main/java/mage/abilities/effects/common/DoUnlessTargetPlayerOrTargetsControllerPaysEffect.java b/Mage/src/main/java/mage/abilities/effects/common/DoUnlessTargetPlayerOrTargetsControllerPaysEffect.java index 79aeee1d2e8..47f064ea6fb 100644 --- a/Mage/src/main/java/mage/abilities/effects/common/DoUnlessTargetPlayerOrTargetsControllerPaysEffect.java +++ b/Mage/src/main/java/mage/abilities/effects/common/DoUnlessTargetPlayerOrTargetsControllerPaysEffect.java @@ -97,7 +97,7 @@ public class DoUnlessTargetPlayerOrTargetsControllerPaysEffect extends OneShotEf @Override public boolean apply(Game game, Ability source) { Player targetController = game.getPlayer(this.getTargetPointer().getFirst(game, source)); - Permanent targetPermanent = game.getPermanent(this.getTargetPointer().getFirst(game, source)); + Permanent targetPermanent = game.getPermanentOrLKIBattlefield(this.getTargetPointer().getFirst(game, source)); if (targetPermanent != null) { targetController = game.getPlayer(targetPermanent.getControllerId()); }