summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraap <aap@papnet.eu>2019-06-29 18:36:31 +0200
committeraap <aap@papnet.eu>2019-06-29 18:36:31 +0200
commitd12db35a9f31d7e16688e0e12f2a9587c7d76c5a (patch)
treee0400814b3140ccf16daf2116a62e548450acb3c
parentfix hud render states; bug in coronas (diff)
downloadre3-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
-rw-r--r--src/entities/Dummy.cpp2
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);