From 00b4090f5556fef0ff421ab53afa7a3cac0561af Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 30 Sep 2013 10:57:42 +0200 Subject: [PATCH] * Fixed Childhood Horror - Removed dots at the end of text (cbt33). --- Mage.Sets/src/mage/sets/odyssey/ChildhoodHorror.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }