diff options
| author | oy <Tom_Adams@web.de> | 2011-01-20 01:35:21 +0100 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-01-20 01:35:21 +0100 |
| commit | 7c67a1334c1cac4c8144aec86dfe516fc073e790 (patch) | |
| tree | c4ed47da5d520032a69bf36ef6345a5d5a4d2227 /src/game | |
| parent | 3c1eee2a121c54f16090e5392918d39bf7105e9d (diff) | |
| download | zcatch-7c67a1334c1cac4c8144aec86dfe516fc073e790.tar.gz zcatch-7c67a1334c1cac4c8144aec86dfe516fc073e790.zip | |
fixed a typo
Diffstat (limited to 'src/game')
| -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 |