Various text fixes

This commit is contained in:
Alex W. Jackson 2022-04-26 07:10:13 -04:00
parent 4304b4a66a
commit d95d8378fb
57 changed files with 224 additions and 708 deletions

View file

@ -1,5 +1,3 @@
package mage.abilities.effects.common;
import mage.constants.Outcome;
@ -9,8 +7,6 @@ import mage.filter.FilterPermanent;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author LevelX2
@ -22,7 +18,7 @@ public class TapAllEffect extends OneShotEffect {
public TapAllEffect(FilterPermanent filter) {
super(Outcome.Tap);
this.filter = filter;
setText();
staticText = "tap all " + filter.getMessage();
}
public TapAllEffect(final TapAllEffect effect) {
@ -42,9 +38,4 @@ public class TapAllEffect extends OneShotEffect {
}
return true;
}
private void setText() {
staticText = "tap all " + filter.getMessage();
}
}