* UnearthAbility - Fixed that unearthed creatures had no haste.

This commit is contained in:
LevelX2 2013-06-18 15:14:53 +02:00
parent ef83ec2874
commit 9c6db9405a
4 changed files with 28 additions and 21 deletions

View file

@ -75,7 +75,7 @@ public class SacrificeTargetEffect extends OneShotEffect<SacrificeTargetEffect>
@Override
public String getText(Mode mode) {
if ("".equals(staticText) && !mode.getTargets().isEmpty()) {
if (staticText.isEmpty() && !mode.getTargets().isEmpty()) {
if (mode.getTargets().get(0).getNumberOfTargets() == 1) {
return "The controller of target " + mode.getTargets().get(0).getTargetName() + " sacrifices it";
} else {