From ee5a6d8d1094478439916a62da01140225e580b6 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sat, 22 Jun 2019 05:53:25 +0400 Subject: [PATCH] * Unbound Flourishing - fixed that it can copy spells without X; --- Mage.Sets/src/mage/cards/u/UnboundFlourishing.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/u/UnboundFlourishing.java b/Mage.Sets/src/mage/cards/u/UnboundFlourishing.java index e3ad89af40..74fa2a87a4 100644 --- a/Mage.Sets/src/mage/cards/u/UnboundFlourishing.java +++ b/Mage.Sets/src/mage/cards/u/UnboundFlourishing.java @@ -129,8 +129,10 @@ class UnboundFlourishingCopyAbility extends TriggeredAbilityImpl { if (event.getType() == GameEvent.EventType.SPELL_CAST) { Spell spell = game.getStack().getSpell(event.getTargetId()); if (spell != null && spell.isInstantOrSorcery()) { - game.getState().setValue(this.getSourceId() + UnboundFlourishing.needPrefix, spell); - return true; + if (spell.getSpellAbility().getManaCostsToPay().containsX()) { + game.getState().setValue(this.getSourceId() + UnboundFlourishing.needPrefix, spell); + return true; + } } }