Fix bug with upcost and countercosts, daily build.

This commit is contained in:
salmelo16
2010-04-27 04:57:13 +00:00
parent b0e92d68a8
commit 4ee2f26e7b
2 changed files with 1 additions and 1 deletions
+1 -1
View File
@@ -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){