* Outlast - Fixed bug of tooltip text.

This commit is contained in:
LevelX2 2014-09-16 23:17:06 +02:00
parent 2d19f88c8b
commit e5bb83d6b9

View file

@ -60,7 +60,7 @@ public class OutlastAbility extends ActivatedAbilityImpl {
@Override
public String getRule() {
StringBuilder sb = new StringBuilder("Outcast ").append(manaCosts.getText());
sb.append(" <i>(").append(costs.getText()).append("{T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)</i>").toString();
sb.append(" <i>(").append(getManaCosts().getText()).append(", ").append(getCosts().getText()).append(": Put a +1/+1 counter on this creature. Outlast only as a sorcery.)</i>").toString();
return sb.toString();
}