chore(config): Improve dist files (#3989)

This commit is contained in:
Francesco Borzì
2020-12-24 00:13:35 +01:00
committed by GitHub
parent bc51fbf3f4
commit fdc3fc962e
3 changed files with 15 additions and 11 deletions

View File

@@ -442,7 +442,9 @@ void World::LoadConfigSettings(bool reload)
///- Read the player limit and the Message of the day from the config file
if (!reload)
SetPlayerAmountLimit(sConfigMgr->GetIntDefault("PlayerLimit", 100));
{
SetPlayerAmountLimit(sConfigMgr->GetIntDefault("PlayerLimit", 1000));
}
Motd::SetMotd(sConfigMgr->GetStringDefault("Motd", "Welcome to an AzerothCore server"));