* Root Sliver - Fixed that the Sliver spells can't be countered did not work correctly.

This commit is contained in:
LevelX2 2017-12-03 17:09:02 +01:00
parent b3a3e17aa2
commit 26a45dd951

View file

@ -70,7 +70,7 @@ public class RootSliver extends CardImpl {
// Root Sliver can't be countered.
this.addAbility(new SimpleStaticAbility(Zone.STACK, new CantBeCounteredSourceEffect()));
// Sliver spells can't be countered by spells or abilities.
this.addAbility(new SimpleStaticAbility(Zone.STACK, new RootSliverEffect()));
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new RootSliverEffect()));
}
@ -88,7 +88,7 @@ class RootSliverEffect extends ContinuousRuleModifyingEffectImpl {
public RootSliverEffect() {
super(Duration.WhileOnBattlefield, Outcome.Benefit);
staticText = "Sliver spells can't be countered by spells or abilities.";
staticText = "Sliver spells can't be countered by spells or abilities";
}
public RootSliverEffect(final RootSliverEffect effect) {