View Single Post
Old 07-16-2004, 10:49 AM   #3 (permalink)
xApoCx
 
Join Date: Jun 2004
Age: 25
Posts: 56
Default monsters can open sec. doors

If you want to repair this. Edit the BaseAI. Find line
:
if ( !door.Locked || !door.UseLocks() )
m_Obstacles.Enqueue( door );

and change to:

if ( !door.Locked || !door.UseLocks() )
if (door.CanOpen)
m_Obstacles.Enqueue( door );

I think
xApoCx is offline   Reply With Quote