mirror of
https://github.com/correl/mage.git
synced 2024-12-25 03:00:15 +00:00
[minor] formatting
This commit is contained in:
parent
4639abd279
commit
d1f3e62d03
1 changed files with 20 additions and 21 deletions
|
@ -45,12 +45,12 @@ import mage.players.Player;
|
|||
public class SkipNextPlayerUntapStepEffect extends OneShotEffect<SkipNextPlayerUntapStepEffect> {
|
||||
|
||||
public SkipNextPlayerUntapStepEffect() {
|
||||
super(Constants.Outcome.Detriment);
|
||||
this("");
|
||||
}
|
||||
|
||||
public SkipNextPlayerUntapStepEffect(String text) {
|
||||
this();
|
||||
staticText = text;
|
||||
super(Constants.Outcome.Detriment);
|
||||
this.staticText = text;
|
||||
}
|
||||
|
||||
public SkipNextPlayerUntapStepEffect(SkipNextPlayerUntapStepEffect effect) {
|
||||
|
@ -79,8 +79,7 @@ public class SkipNextPlayerUntapStepEffect extends OneShotEffect<SkipNextPlayerU
|
|||
StringBuilder sb = new StringBuilder();
|
||||
if (staticText.length() > 0) {
|
||||
sb.append(staticText);
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
sb.append("target");
|
||||
}
|
||||
sb.append("player skips his or her next untap step");
|
||||
|
|
Loading…
Reference in a new issue