From 9127ddaca2702ab205344287789936da6d54f617 Mon Sep 17 00:00:00 2001 From: "omegablast2002@yahoo.com" Date: Tue, 31 Jan 2012 21:25:38 +0000 Subject: [PATCH] minor change to the parsing of AMover "and((" subkeyword. --- projects/mtg/src/MTGAbility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index cab3b2e2d..56def6f10 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -1747,7 +1747,7 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG a->oneShot = 1; if(s.find("and(") != string::npos) { - vector splitAnd = parseBetween(s, "and((", "))"); + vector splitAnd = parseBetween(s, "and((", " ))",false); if(splitAnd.size()) { ((AAMover*)a)->andAbility = parseMagicLine(splitAnd[1], id, spell, card);