diff --git a/Mage.Sets/src/mage/sets/odyssey/ChildhoodHorror.java b/Mage.Sets/src/mage/sets/odyssey/ChildhoodHorror.java index 74a4a770769..5bfd8dd018c 100644 --- a/Mage.Sets/src/mage/sets/odyssey/ChildhoodHorror.java +++ b/Mage.Sets/src/mage/sets/odyssey/ChildhoodHorror.java @@ -67,13 +67,13 @@ public class ChildhoodHorror extends CardImpl { new ConditionalContinousEffect( new BoostSourceEffect(2, 2, Duration.WhileOnBattlefield), new CardsInControllerGraveCondition(7), - "Threshold - If seven or more cards are in your graveyard, Childhood Horror gets +2/+2." + "Threshold - If seven or more cards are in your graveyard, Childhood Horror gets +2/+2" )); Effect effect = new ConditionalRestrictionEffect( new CantBlockSourceEffect(Duration.WhileOnBattlefield), new CardsInControllerGraveCondition(7)); - effect.setText("and can't block."); + effect.setText("and can't block"); thresholdAbility.addEffect(effect); this.addAbility(thresholdAbility); }