diff --git a/projects/mtg/bin/daily_build/template.exe b/projects/mtg/bin/daily_build/template.exe index 7ca2785f8..c185d2fe4 100644 Binary files a/projects/mtg/bin/daily_build/template.exe and b/projects/mtg/bin/daily_build/template.exe differ diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index fe1536e49..2cedb6dd6 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -533,7 +533,7 @@ MTGAbility * AbilityFactory::parseMagicLine(string s, int id, Spell * spell, MTG size_t start = s.find("["); size_t end = s.find("]",start); string s1 = s.substr(start + 1,end - start - 1); - size_t seperator = s1.find(","); + size_t seperator = s1.find(";"); int phase = Constants::MTG_PHASE_UPKEEP; int once = 0; if (seperator != string::npos){