From e713cfffea4032d6130fa40d8488fef599b6b25e Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 17 Mar 2015 09:39:36 +0100 Subject: [PATCH] Fix to ra recently introduced bug of DontUntapInControllersNextUntapStepTargetEffect class. --- .../common/DontUntapInControllersNextUntapStepTargetEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/effects/common/DontUntapInControllersNextUntapStepTargetEffect.java b/Mage/src/mage/abilities/effects/common/DontUntapInControllersNextUntapStepTargetEffect.java index a793698f805..e45e011edc5 100644 --- a/Mage/src/mage/abilities/effects/common/DontUntapInControllersNextUntapStepTargetEffect.java +++ b/Mage/src/mage/abilities/effects/common/DontUntapInControllersNextUntapStepTargetEffect.java @@ -145,7 +145,7 @@ public class DontUntapInControllersNextUntapStepTargetEffect extends ContinuousR if (staticText != null && !staticText.isEmpty()) { return staticText; } - if (targetName.length() > 0) { + if (targetName != null && targetName.length() > 0) { return targetName + " doesn't untap during its controller's next untap step"; } else {