This commit is contained in:
2017-05-05 01:47:12 -07:00
commit 1c428f7b82

View File

@ -20,6 +20,8 @@ const bool V8MapParser::LoadMap(const char* _kpcFileName) {
if(!std::getline(InFile, Line)) if(!std::getline(InFile, Line))
{ {
bGoing = false; bGoing = false;
// without this break, loop control allows the final empty string to get passed into ParseFunctions()
break;
} }
} }
bAdvance = true; bAdvance = true;