about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
authoroy <Tom_Adams@web.de>2011-01-20 01:35:21 +0100
committeroy <Tom_Adams@web.de>2011-01-20 01:35:21 +0100
commit7c67a1334c1cac4c8144aec86dfe516fc073e790 (patch)
treec4ed47da5d520032a69bf36ef6345a5d5a4d2227 /src/game
parent3c1eee2a121c54f16090e5392918d39bf7105e9d (diff)
downloadzcatch-7c67a1334c1cac4c8144aec86dfe516fc073e790.tar.gz
zcatch-7c67a1334c1cac4c8144aec86dfe516fc073e790.zip
fixed a typo
Diffstat (limited to 'src/game')
-rw-r--r--src/game/server/gameworld.cpp2
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