mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
fix text for EntersBattlefieldEffect
This commit is contained in:
parent
ec3f0cc50e
commit
ab1f0b5f11
1 changed files with 2 additions and 2 deletions
|
@ -96,9 +96,9 @@ public class EntersBattlefieldEffect extends ReplacementEffectImpl<EntersBattlef
|
||||||
@Override
|
@Override
|
||||||
public String getText(Ability source) {
|
public String getText(Ability source) {
|
||||||
if (text.length() == 0)
|
if (text.length() == 0)
|
||||||
return "{this} enters the battlefield " + baseEffects.getText(source);
|
return "When {this} enters the battlefield, " + baseEffects.getText(source);
|
||||||
else
|
else
|
||||||
return "{this} enters the battlefield " + text;
|
return "When {this} enters the battlefield, " + text;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue