From d1af9b0b859a373b091e67d4dfb5ee6f97284ade Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 13 Jan 2017 23:02:21 +0100 Subject: [PATCH] * Fixed a problem of the improvise ability that prevented to pay costs during the resolution of the spell cast using improvise (e.g. Metallic Rebike). --- Mage/src/main/java/mage/game/stack/Spell.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Mage/src/main/java/mage/game/stack/Spell.java b/Mage/src/main/java/mage/game/stack/Spell.java index 3fd17d3a5eb..eedb53d704b 100644 --- a/Mage/src/main/java/mage/game/stack/Spell.java +++ b/Mage/src/main/java/mage/game/stack/Spell.java @@ -161,6 +161,7 @@ public class Spell extends StackObjImpl implements Card { } } } + setDoneActivatingManaAbilities(false); // can be activated again maybe during the resolution of the spell (e.g. Metallic Rebuke) return true; }