From 2d43f4fa0ed11ad3e18b1de19080f461ca4f8f71 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 20 Nov 2016 10:25:56 +0100 Subject: [PATCH] * Collective Restraint - Fixed that it also wrongly prevented players from attacking planeswalkers without paying the cost. --- Mage.Sets/src/mage/cards/c/CollectiveRestraint.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Mage.Sets/src/mage/cards/c/CollectiveRestraint.java b/Mage.Sets/src/mage/cards/c/CollectiveRestraint.java index e51144f6a8a..d0cf351fc69 100644 --- a/Mage.Sets/src/mage/cards/c/CollectiveRestraint.java +++ b/Mage.Sets/src/mage/cards/c/CollectiveRestraint.java @@ -28,7 +28,6 @@ package mage.cards.c; import java.util.UUID; - import mage.abilities.Ability; import mage.abilities.common.SimpleStaticAbility; import mage.abilities.costs.mana.ManaCosts; @@ -49,7 +48,7 @@ import mage.game.events.GameEvent; public class CollectiveRestraint extends CardImpl { public CollectiveRestraint(UUID ownerId, CardSetInfo setInfo) { - super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{3}{U}"); + super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{3}{U}"); // Domain - Creatures can't attack you unless their controller pays {X} for each creature he or she controls that's attacking you, where X is the number of basic land types you control. this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CollectiveRestraintPayManaToAttackAllEffect())); @@ -69,7 +68,7 @@ public class CollectiveRestraint extends CardImpl { class CollectiveRestraintPayManaToAttackAllEffect extends CantAttackYouUnlessPayManaAllEffect { CollectiveRestraintPayManaToAttackAllEffect() { - super(null, true); + super(null, false); staticText = "Creatures can't attack you unless their controller pays {X} for each creature he or she controls that's attacking you, where X is the number of basic land types you control."; }