diff --git a/source/platform/pconveyr.cpp b/source/platform/pconveyr.cpp index 7b49d912e..54d418f1d 100644 --- a/source/platform/pconveyr.cpp +++ b/source/platform/pconveyr.cpp @@ -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; } ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////