* Slab Hammer - Removed unneccessary target.

This commit is contained in:
LevelX2 2015-09-25 00:21:29 +02:00
parent 234d5b0a52
commit 3bb7b6dd5b
2 changed files with 1 additions and 3 deletions

View file

@ -148,7 +148,7 @@ public class DontUntapInControllersNextUntapStepTargetEffect extends ContinuousR
if (targetName != null && targetName.length() > 0) {
return targetName + " doesn't untap during its controller's next untap step";
} else {
return "Target " + (mode == null ? "creature" : mode.getTargets().get(0).getTargetName()) + " doesn't untap during its controller's next untap step";
return "target " + (mode == null ? "creature" : mode.getTargets().get(0).getTargetName()) + " doesn't untap during its controller's next untap step";
}
}