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
|
||||
public String getText(Ability source) {
|
||||
if (text.length() == 0)
|
||||
return "{this} enters the battlefield " + baseEffects.getText(source);
|
||||
return "When {this} enters the battlefield, " + baseEffects.getText(source);
|
||||
else
|
||||
return "{this} enters the battlefield " + text;
|
||||
return "When {this} enters the battlefield, " + text;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in a new issue