From 6e45f703358d8546ac0fcc525a48ae42f313310c Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Tue, 3 Feb 2015 00:51:22 +0100 Subject: [PATCH] * Manifest - Fixed that turn face up costs of creatures with bestow were the bestow costs instead of the normal casting costs without bestow (fixes #677). --- Mage/src/mage/cards/CardImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage/src/mage/cards/CardImpl.java b/Mage/src/mage/cards/CardImpl.java index 03c9e906848..c37202f14ba 100644 --- a/Mage/src/mage/cards/CardImpl.java +++ b/Mage/src/mage/cards/CardImpl.java @@ -258,7 +258,8 @@ public abstract class CardImpl extends MageObjectImpl implements Card { public SpellAbility getSpellAbility() { if (spellAbility == null) { for (Ability ability : abilities.getActivatedAbilities(Zone.HAND)) { - if (ability instanceof SpellAbility) { + // name check prevents that alternate casting methods (like "cast [card name] using bestow") are returned here + if (ability instanceof SpellAbility && ability.toString().endsWith(getName())) { spellAbility = (SpellAbility) ability; } }