fixes wrong initialization of max number of objects and npc spaws in egs

--HG--
branch : viniciusarroyo/fixes-wrong-initialization-of-max-number-1470835250351
This commit is contained in:
Vinicius Arroyo 2016-08-10 13:23:35 +00:00
parent a25697fbda
commit b9bc6e91bd

View file

@ -1223,12 +1223,12 @@ void CPlayerService::initConfigFileVars()
MaxNbGuilds = 1000;
CConfigFile::CVar *varMaxNbObjects = ConfigFile.getVarPtr("NbObjectsLimit");
if ( varMaxNbPlayers )
if ( varMaxNbObjects )
MaxNbObjects= varMaxNbPlayers->asInt();
else
MaxNbObjects = 1000;
CConfigFile::CVar *varMaxNbNpcSpawnedByEGS = ConfigFile.getVarPtr("NbNpcSpawnedByEGSLimit");
if ( varMaxNbPlayers )
if ( varMaxNbNpcSpawnedByEGS )
MaxNbNpcSpawnedByEGS = varMaxNbPlayers->asInt();
else
MaxNbNpcSpawnedByEGS = 50;