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);