From 95b9507c0cad1529504b1268d2d9a5ebd882e567 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 30 May 2014 15:03:06 +0200 Subject: [PATCH] Added missing change of Flashback - cost modification fix. --- Mage/src/mage/game/stack/StackAbility.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Mage/src/mage/game/stack/StackAbility.java b/Mage/src/mage/game/stack/StackAbility.java index 9f735ea492..b70967a2a1 100644 --- a/Mage/src/mage/game/stack/StackAbility.java +++ b/Mage/src/mage/game/stack/StackAbility.java @@ -419,6 +419,11 @@ public class StackAbility implements StackObject, Ability { public String getGameLogMessage(Game game) { throw new UnsupportedOperationException("Not supported."); //To change body of generated methods, choose Tools | Templates. } + + @Override + public void setCostModificationActive(boolean active) { + throw new UnsupportedOperationException("Not supported. Only neede for flashbacked spells"); + } }