diff --git a/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java b/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java index e04c0014e32..0bab399a1a3 100644 --- a/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java +++ b/Mage.Sets/src/mage/sets/odyssey/CrashingCentaur.java @@ -73,11 +73,12 @@ public class CrashingCentaur extends CardImpl { new ConditionalContinousEffect( new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), new CardsInControllerGraveCondition(7), - "Threshold - If seven or more cards are in your graveyard, Crashing Centaur gets +2/+2")); + "Threshold - If seven or more cards are in your graveyard, {this} gets +2/+2")); Effect effect = new ConditionalContinousEffect( new GainAbilitySourceEffect(ShroudAbility.getInstance()), new CardsInControllerGraveCondition(7), "and has shroud"); thresholdAbility.addEffect(effect); + this.addAbility(thresholdAbility); }