mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Wrong variable names
--HG-- branch : develop
This commit is contained in:
parent
6fa8aa3ce0
commit
2c6bbb7124
1 changed files with 3 additions and 2 deletions
|
@ -1224,12 +1224,13 @@ void CPlayerService::initConfigFileVars()
|
|||
|
||||
CConfigFile::CVar *varMaxNbObjects = ConfigFile.getVarPtr("NbObjectsLimit");
|
||||
if ( varMaxNbObjects )
|
||||
MaxNbObjects= varMaxNbPlayers->asInt();
|
||||
MaxNbObjects = varMaxNbObjects->asInt();
|
||||
else
|
||||
MaxNbObjects = 1000;
|
||||
|
||||
CConfigFile::CVar *varMaxNbNpcSpawnedByEGS = ConfigFile.getVarPtr("NbNpcSpawnedByEGSLimit");
|
||||
if ( varMaxNbNpcSpawnedByEGS )
|
||||
MaxNbNpcSpawnedByEGS = varMaxNbPlayers->asInt();
|
||||
MaxNbNpcSpawnedByEGS = varMaxNbNpcSpawnedByEGS->asInt();
|
||||
else
|
||||
MaxNbNpcSpawnedByEGS = 50;
|
||||
CConfigFile::CVar *varMaxNbForageSources = ConfigFile.getVarPtr("NbForageSourcesLimit");
|
||||
|
|
Loading…
Reference in a new issue