Fix to ra recently introduced bug of DontUntapInControllersNextUntapStepTargetEffect class.

This commit is contained in:
LevelX2 2015-03-17 09:39:36 +01:00
parent a9a23026fc
commit e713cfffea

View file

@ -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 {