* 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

@ -41,7 +41,6 @@ import mage.constants.Duration;
import mage.constants.Outcome; import mage.constants.Outcome;
import mage.constants.Rarity; import mage.constants.Rarity;
import mage.filter.common.FilterControlledLandPermanent; import mage.filter.common.FilterControlledLandPermanent;
import mage.target.TargetPermanent;
import mage.target.common.TargetControlledPermanent; import mage.target.common.TargetControlledPermanent;
/** /**
@ -60,7 +59,6 @@ public class SlabHammer extends CardImpl {
new DoIfCostPaid(new BoostEquippedEffect(2, 2, Duration.EndOfTurn), new DoIfCostPaid(new BoostEquippedEffect(2, 2, Duration.EndOfTurn),
new ReturnToHandTargetPermanentCost(new TargetControlledPermanent(new FilterControlledLandPermanent())), new ReturnToHandTargetPermanentCost(new TargetControlledPermanent(new FilterControlledLandPermanent())),
"Return a land you control to its owner's hand? (giving +2/+2 to the equipped creature)")); "Return a land you control to its owner's hand? (giving +2/+2 to the equipped creature)"));
ability.addTarget(new TargetPermanent());
this.addAbility(ability); this.addAbility(ability);
// Equip {2} // Equip {2}

View file

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