mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 03:19:02 +00:00
fix
This commit is contained in:
parent
8946a20983
commit
d12db35a9f
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ CDummy::Add(void)
|
||||||
for(x = xstart; x <= xend; x++){
|
for(x = xstart; x <= xend; x++){
|
||||||
s = CWorld::GetSector(x, y);
|
s = CWorld::GetSector(x, y);
|
||||||
if(x == xmid && y == ymid)
|
if(x == xmid && y == ymid)
|
||||||
list = &s->m_lists[ENTITYLIST_OBJECTS];
|
list = &s->m_lists[ENTITYLIST_DUMMIES];
|
||||||
else
|
else
|
||||||
list = &s->m_lists[ENTITYLIST_DUMMIES_OVERLAP];
|
list = &s->m_lists[ENTITYLIST_DUMMIES_OVERLAP];
|
||||||
CPtrNode *node = list->InsertItem(this);
|
CPtrNode *node = list->InsertItem(this);
|
||||||
|
|
Loading…
Reference in a new issue