diff --git a/Mage.Sets/src/mage/cards/z/ZhulodokVoidGorger.java b/Mage.Sets/src/mage/cards/z/ZhulodokVoidGorger.java index 8d45a9e3e05..c72c8984f37 100644 --- a/Mage.Sets/src/mage/cards/z/ZhulodokVoidGorger.java +++ b/Mage.Sets/src/mage/cards/z/ZhulodokVoidGorger.java @@ -37,9 +37,9 @@ public final class ZhulodokVoidGorger extends CardImpl { this.toughness = new MageInt(4); // Colorless spells you cast from your hand with mana value 7 or greater have "Cascade, cascade." - Ability ability = new SimpleStaticAbility(new GainAbilityControlledSpellsEffect(new CascadeAbility(), filter) + Ability ability = new SimpleStaticAbility(new GainAbilityControlledSpellsEffect(new CascadeAbility(false), filter) .setText("colorless spells you cast from your hand with mana value 7")); - ability.addEffect(new GainAbilityControlledSpellsEffect(new CascadeAbility(), filter) + ability.addEffect(new GainAbilityControlledSpellsEffect(new CascadeAbility(false), filter) .setText("or greater have \"Cascade, cascade.\"")); this.addAbility(ability); }