diff --git a/Mage/src/mage/abilities/keyword/OutlastAbility.java b/Mage/src/mage/abilities/keyword/OutlastAbility.java
index 1fda18b78ac..b7959d69803 100644
--- a/Mage/src/mage/abilities/keyword/OutlastAbility.java
+++ b/Mage/src/mage/abilities/keyword/OutlastAbility.java
@@ -60,7 +60,7 @@ public class OutlastAbility extends ActivatedAbilityImpl {
@Override
public String getRule() {
StringBuilder sb = new StringBuilder("Outcast ").append(manaCosts.getText());
- sb.append(" (").append(costs.getText()).append("{T}: Put a +1/+1 counter on this creature. Outlast only as a sorcery.)").toString();
+ sb.append(" (").append(getManaCosts().getText()).append(", ").append(getCosts().getText()).append(": Put a +1/+1 counter on this creature. Outlast only as a sorcery.)").toString();
return sb.toString();
}