[EMN] Fixed tooltip text on some blue cards.

This commit is contained in:
fireshoes 2016-07-11 23:40:24 -05:00
parent c322b9adad
commit 80f4ab770b
5 changed files with 13 additions and 6 deletions

View file

@ -159,7 +159,10 @@ public class DontUntapInControllersNextUntapStepTargetEffect extends ContinuousR
return staticText;
}
if (targetName != null && targetName.length() > 0) {
return targetName + " doesn't untap during its controller's next untap step";
if (targetName.equals("Those creatures")) {
return targetName + " don't untap during their controller's next untap step";
} else
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";
}