mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
text fixes
This commit is contained in:
parent
bfba6aefbc
commit
b8c78cceec
3 changed files with 10 additions and 5 deletions
|
|
@ -31,9 +31,9 @@ public class CantAttackYouAllEffect extends RestrictionEffect {
|
|||
super(duration, Outcome.Benefit);
|
||||
this.filterAttacker = filter;
|
||||
this.alsoPlaneswalker = alsoPlaneswalker;
|
||||
staticText = filterAttacker.getMessage() + " can't attack you"
|
||||
+ (alsoPlaneswalker ? " or planeswalkers you control" : "")
|
||||
+ (duration == Duration.UntilYourNextTurn || duration == Duration.UntilEndOfYourNextTurn ? " " + duration.toString() : "");
|
||||
staticText = (duration == Duration.UntilYourNextTurn ? duration.toString() + ", " : "")
|
||||
+ filterAttacker.getMessage() + " can't attack you"
|
||||
+ (alsoPlaneswalker ? " or planeswalkers you control" : "");
|
||||
}
|
||||
|
||||
protected CantAttackYouAllEffect(final CantAttackYouAllEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue