diff options
author | aap <aap@papnet.eu> | 2019-06-29 18:36:31 +0200 |
---|---|---|
committer | aap <aap@papnet.eu> | 2019-06-29 18:36:31 +0200 |
commit | d12db35a9f31d7e16688e0e12f2a9587c7d76c5a (patch) | |
tree | e0400814b3140ccf16daf2116a62e548450acb3c /src | |
parent | fix hud render states; bug in coronas (diff) | |
download | re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.tar re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.tar.gz re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.tar.bz2 re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.tar.lz re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.tar.xz re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.tar.zst re3-d12db35a9f31d7e16688e0e12f2a9587c7d76c5a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/entities/Dummy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entities/Dummy.cpp b/src/entities/Dummy.cpp index 68b67b5c..493bdbc7 100644 --- a/src/entities/Dummy.cpp +++ b/src/entities/Dummy.cpp @@ -31,7 +31,7 @@ CDummy::Add(void) for(x = xstart; x <= xend; x++){ s = CWorld::GetSector(x, y); if(x == xmid && y == ymid) - list = &s->m_lists[ENTITYLIST_OBJECTS]; + list = &s->m_lists[ENTITYLIST_DUMMIES]; else list = &s->m_lists[ENTITYLIST_DUMMIES_OVERLAP]; CPtrNode *node = list->InsertItem(this); |