fixes wrong initialization of max number of objects and npc spaws in egs
This commit is contained in:
parent
3e4ee23200
commit
014b8bd0ab
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue