From 281a3cfa3df88f828cea5ca16ace2dfda7c3e855 Mon Sep 17 00:00:00 2001 From: Nidhoegger Date: Thu, 9 Jul 2015 09:37:52 +0200 Subject: [PATCH] Resolved Issue #1024. Needs intense testing! --- Mage/src/mage/cards/CardImpl.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage/src/mage/cards/CardImpl.java b/Mage/src/mage/cards/CardImpl.java index e36d8fa0b2..1706ac1fea 100644 --- a/Mage/src/mage/cards/CardImpl.java +++ b/Mage/src/mage/cards/CardImpl.java @@ -292,7 +292,9 @@ public abstract class CardImpl extends MageObjectImpl implements Card { if (spellAbility == null) { for (Ability ability : abilities.getActivatedAbilities(Zone.HAND)) { // name check prevents that alternate casting methods (like "cast [card name] using bestow") are returned here - if (ability instanceof SpellAbility && ability.toString().endsWith(getName())) { + // BUG #1024: Bestow bug + //if (ability instanceof SpellAbility && ability.toString().endsWith(getName())) { + if (ability instanceof SpellAbility) { spellAbility = (SpellAbility) ability; } }