From 7d291747a1bc92c810f02ec18d2c98385a436971 Mon Sep 17 00:00:00 2001 From: "techdragon.nguyen@gmail.com" Date: Thu, 11 Nov 2010 07:14:49 +0000 Subject: [PATCH] changing keyword manaredux to altercost as it is more misleading for manaredux to also mean cost increase. altercost is more representative of the actual effect than manaredux. --- projects/mtg/src/MTGAbility.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index 6ca50971b..f301c5910 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -1408,8 +1408,8 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG return a; } - if ( s.find("manaredux(") != string::npos ) - return getManaReduxAbility( s.substr( s.find("manaredux(") + 10), id, spell, card, target ); + if ( s.find("altercost(") != string::npos ) + return getManaReduxAbility( s.substr( s.find("altercost(") + 10), id, spell, card, target ); //resetcost dirty code found = s.find("resetcost");