Merge with develop

This commit is contained in:
kervala 2016-08-10 15:46:13 +02:00
parent 8af64c9e71
commit 1e12bb27cc

View file

@ -1223,25 +1223,29 @@ void CPlayerService::initConfigFileVars()
MaxNbGuilds = 1000; MaxNbGuilds = 1000;
CConfigFile::CVar *varMaxNbObjects = ConfigFile.getVarPtr("NbObjectsLimit"); CConfigFile::CVar *varMaxNbObjects = ConfigFile.getVarPtr("NbObjectsLimit");
if ( varMaxNbPlayers ) if ( varMaxNbObjects )
MaxNbObjects= varMaxNbPlayers->asInt(); MaxNbObjects = varMaxNbObjects->asInt();
else else
MaxNbObjects = 1000; MaxNbObjects = 1000;
CConfigFile::CVar *varMaxNbNpcSpawnedByEGS = ConfigFile.getVarPtr("NbNpcSpawnedByEGSLimit"); CConfigFile::CVar *varMaxNbNpcSpawnedByEGS = ConfigFile.getVarPtr("NbNpcSpawnedByEGSLimit");
if ( varMaxNbPlayers ) if ( varMaxNbNpcSpawnedByEGS )
MaxNbNpcSpawnedByEGS = varMaxNbPlayers->asInt(); MaxNbNpcSpawnedByEGS = varMaxNbNpcSpawnedByEGS->asInt();
else else
MaxNbNpcSpawnedByEGS = 50; MaxNbNpcSpawnedByEGS = 50;
CConfigFile::CVar *varMaxNbForageSources = ConfigFile.getVarPtr("NbForageSourcesLimit"); CConfigFile::CVar *varMaxNbForageSources = ConfigFile.getVarPtr("NbForageSourcesLimit");
if ( varMaxNbForageSources ) if ( varMaxNbForageSources )
MaxNbForageSources = varMaxNbForageSources->asInt(); MaxNbForageSources = varMaxNbForageSources->asInt();
else else
MaxNbForageSources = 2000; MaxNbForageSources = 2000;
CConfigFile::CVar *varMaxNbToxicClouds = ConfigFile.getVarPtr("NbToxicCloudsLimit"); CConfigFile::CVar *varMaxNbToxicClouds = ConfigFile.getVarPtr("NbToxicCloudsLimit");
if ( varMaxNbToxicClouds ) if ( varMaxNbToxicClouds )
MaxNbToxicClouds = varMaxNbToxicClouds->asInt(); MaxNbToxicClouds = varMaxNbToxicClouds->asInt();
else else
MaxNbToxicClouds = 1000; MaxNbToxicClouds = 1000;
nlinfo( "NbPlayersLimit=%u NbObjectsLimit=%u NbNpcSpawnedByEGSLimit=%u NbForageSourcesLimit=%u NbToxicCloudsLimit=%u NbGuildLimit=%u", MaxNbPlayers, MaxNbObjects, MaxNbNpcSpawnedByEGS, MaxNbForageSources, MaxNbToxicClouds, MaxNbGuilds ); nlinfo( "NbPlayersLimit=%u NbObjectsLimit=%u NbNpcSpawnedByEGSLimit=%u NbForageSourcesLimit=%u NbToxicCloudsLimit=%u NbGuildLimit=%u", MaxNbPlayers, MaxNbObjects, MaxNbNpcSpawnedByEGS, MaxNbForageSources, MaxNbToxicClouds, MaxNbGuilds );
CConfigFile::CVar *varExportDepositContents = ConfigFile.getVarPtr("ExportDepositContents"); CConfigFile::CVar *varExportDepositContents = ConfigFile.getVarPtr("ExportDepositContents");