This commit is contained in:
Daveo 2001-05-10 22:39:23 +00:00
parent 6c28c8cc7f
commit 8309175a0c
3 changed files with 6 additions and 1 deletions

View file

@ -191,12 +191,15 @@ DVECTOR const &CamPos=CLevel::getCameraPos();
if (Flag)
{
thing->think(_frames);
thing->updateCollisionArea();
// thing->updateCollisionArea();
if (thing->canCollide())
{
CThingManager::addToCollisionList(thing);
}
}
/* THIS WILL NOT STAY HERE, THINGS MUST BE INITIALISED CORRECTLY */
thing->updateCollisionArea();
thing=thing->m_nextListThing;
}
}