fix text for EntersBattlefieldEffect

This commit is contained in:
Loki 2010-12-18 13:17:32 +02:00
parent ec3f0cc50e
commit ab1f0b5f11

View file

@ -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