* Treacherous Pit-Dweller - Fixed that the enteres the battlefield ability was not implemented correctly.

This commit is contained in:
LevelX2 2015-05-30 15:14:44 +02:00
parent 54ceaae222
commit a541d24a20
4 changed files with 60 additions and 12 deletions

View file

@ -81,7 +81,7 @@ public class EntersBattlefieldTriggeredAbility extends TriggeredAbilityImpl {
if (noRule) {
return super.getRule();
}
return new StringBuilder(rulePrefix != null ? rulePrefix : "").append("When {this} enters the battlefield, ").append(super.getRule()).toString();
return (rulePrefix != null ? rulePrefix : "") + "When {this} enters the battlefield, "+ super.getRule();
}
@Override