From 7c67a1334c1cac4c8144aec86dfe516fc073e790 Mon Sep 17 00:00:00 2001 From: oy Date: Thu, 20 Jan 2011 01:35:21 +0100 Subject: [PATCH] fixed a typo --- src/game/server/gameworld.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/server/gameworld.cpp b/src/game/server/gameworld.cpp index b4ab4594b..66da43699 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