This commit is contained in:
Charles 2001-07-10 16:20:32 +00:00
parent 5303d885ae
commit 9e5599bce1

View File

@ -95,6 +95,16 @@ void CNpcConveyorPlatform::postInit()
m_spinFinish = false;
m_rotation = 0;
s32 minX, maxX, minY, maxY;
m_npcPath.getPathXExtents( &minX, &maxX );
m_npcPath.getPathYExtents( &minY, &maxY );
m_thinkArea.x1 = minX;
m_thinkArea.x2 = maxX;
m_thinkArea.y1 = minY;
m_thinkArea.y2 = maxY;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////