diff options
Diffstat (limited to 'src/game/server')
| -rw-r--r-- | src/game/server/gameworld.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/server/gameworld.cpp b/src/game/server/gameworld.cpp index b4ab4594..66da4369 100644 --- a/src/game/server/gameworld.cpp +++ b/src/game/server/gameworld.cpp @@ -61,7 +61,7 @@ int CGameWorld::FindEntities(vec2 Pos, float Radius, CEntity **ppEnts, int Max, void CGameWorld::InsertEntity(CEntity *pEnt) { #ifdef CONF_DEBUG - for(CEntity *pCur = m_apFirstEntityTypes[pEnt->m_Objtype]; pCur; pCur = pCur->m_pNextTypeEntity) + for(CEntity *pCur = m_apFirstEntityTypes[pEnt->m_ObjType]; pCur; pCur = pCur->m_pNextTypeEntity) dbg_assert(pCur != pEnt, "err"); #endif |