From da26df4c7b863ba2980524fdf1ed37f42829ff7a Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 1 Feb 2015 16:03:03 +0100 Subject: [PATCH] Added missing method of spell- --- Mage/src/mage/game/stack/Spell.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Mage/src/mage/game/stack/Spell.java b/Mage/src/mage/game/stack/Spell.java index c3cf48980a..5e9a9d7530 100644 --- a/Mage/src/mage/game/stack/Spell.java +++ b/Mage/src/mage/game/stack/Spell.java @@ -900,6 +900,11 @@ public class Spell implements StackObject, Card { throw new UnsupportedOperationException("Unsupported operation"); } + @Override + public void updateZoneChangeCounter() { + throw new UnsupportedOperationException("Unsupported operation"); + } + @Override public Ability getStackAbility() { return this.ability;