More tweaks [skip ci]

This commit is contained in:
Akkadius 2020-04-18 20:03:34 -05:00
parent df43a23d98
commit 472c0cd196
3 changed files with 3 additions and 3 deletions

View File

@ -171,7 +171,7 @@ int main(int argc, char **argv)
LogInfo( LogInfo(
"Current expansion is [{}] ({})", "Current expansion is [{}] ({})",
content_service.GetCurrentExpansion(), content_service.GetCurrentExpansion(),
Expansion::ExpansionName[content_service.GetCurrentExpansion()] content_service.GetCurrentExpansionName()
); );
std::string hotfix_name = ""; std::string hotfix_name = "";

View File

@ -326,7 +326,7 @@ namespace WorldserverCommandHandler {
LogInfo( LogInfo(
"Current expansion is [{}] ({}) is Velious Enabled [{}] Criteria [{}]", "Current expansion is [{}] ({}) is Velious Enabled [{}] Criteria [{}]",
content_service.GetCurrentExpansion(), content_service.GetCurrentExpansion(),
Expansion::ExpansionName[content_service.GetCurrentExpansion()], content_service.GetCurrentExpansionName(),
content_service.IsTheScarsOfVeliousEnabled() ? "true" : "false", content_service.IsTheScarsOfVeliousEnabled() ? "true" : "false",
ContentFilterCriteria::apply() ContentFilterCriteria::apply()
); );

View File

@ -313,7 +313,7 @@ int main(int argc, char** argv) {
} }
LogInfo("Loading zone names"); LogInfo("Loading zone names");
// Load to both context for now... this needs to be cleaned up as this has always been cludgy // Load to both context for now... this needs to be cleaned up as this has always been cludgy
content_db.LoadZoneNames(); content_db.LoadZoneNames();
database.zonename_array = content_db.zonename_array; database.zonename_array = content_db.zonename_array;