Change mod version separator to dot

I don't know why I put comma in there and how I didn't notice this
earlier.
pyro-refactor
MrSimbax 2020-07-24 12:57:45 +02:00
parent b685d0060c
commit 93f3abee1a
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ void CModManager::LoadModData(Mod& mod)
auto major = boost::lexical_cast<std::string>(line->GetParam("major")->AsInt());
auto minor = boost::lexical_cast<std::string>(line->GetParam("minor")->AsInt());
auto patch = boost::lexical_cast<std::string>(line->GetParam("patch")->AsInt());
data.version = boost::algorithm::join(std::vector<std::string>{ major, minor, patch }, ",");
data.version = boost::algorithm::join(std::vector<std::string>{ major, minor, patch }, ".");
}
}