feat(Core/World): Don't prevent players from logging characters by default (#8993)

This commit is contained in:
Skjalf
2021-11-05 21:31:45 -03:00
committed by GitHub
parent f4ea1c6a6d
commit eb62acfad5

View File

@@ -1437,7 +1437,7 @@ void World::LoadConfigSettings(bool reload)
}
// Realm Availability
m_bool_configs[CONFIG_REALM_LOGIN_ENABLED] = sConfigMgr->GetOption<bool>("World.RealmAvailability", false);
m_bool_configs[CONFIG_REALM_LOGIN_ENABLED] = sConfigMgr->GetOption<bool>("World.RealmAvailability", true);
// call ScriptMgr if we're reloading the configuration
sScriptMgr->OnAfterConfigLoad(reload);