forked from External/mage
Various text fixes
This commit is contained in:
parent
4304b4a66a
commit
d95d8378fb
57 changed files with 224 additions and 708 deletions
|
|
@ -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();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue