Temporary fix for world not locking chunkmap in TickMobs.
Reported as #283; this is a hotfix only.
This commit is contained in:
parent
4cf0862c12
commit
0152a6ffb4
@ -736,6 +736,9 @@ void cWorld::TickWeather(float a_Dt)
|
|||||||
|
|
||||||
void cWorld::TickMobs(float a_Dt)
|
void cWorld::TickMobs(float a_Dt)
|
||||||
{
|
{
|
||||||
|
// _X 2013_10_22: This is a quick fix for #283 - the world needs to be locked while ticking mobs
|
||||||
|
cWorld::cLock Lock(*this);
|
||||||
|
|
||||||
// before every Mob action, we have to count them depending on the distance to players, on their family ...
|
// before every Mob action, we have to count them depending on the distance to players, on their family ...
|
||||||
cMobCensus MobCensus;
|
cMobCensus MobCensus;
|
||||||
m_ChunkMap->CollectMobCensus(MobCensus);
|
m_ChunkMap->CollectMobCensus(MobCensus);
|
||||||
|
Loading…
Reference in New Issue
Block a user