forked from External/mage
[ALA] various text fixes
This commit is contained in:
parent
670c2a5615
commit
edaaac53d9
33 changed files with 185 additions and 248 deletions
|
|
@ -51,7 +51,8 @@ public class MayTapOrUntapTargetEffect extends OneShotEffect {
|
|||
if (mode.getTargets().isEmpty()) {
|
||||
return "you may tap or untap it";
|
||||
} else {
|
||||
return "you may tap or untap target " + mode.getTargets().get(0).getTargetName();
|
||||
String targetName = mode.getTargets().get(0).getTargetName();
|
||||
return "you may tap or untap " + (targetName.contains("target") ? "" : "target ") + targetName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue