diff --git a/source/enemy/nsdart.cpp b/source/enemy/nsdart.cpp index d3adcb7ac..6f7b20e3e 100644 --- a/source/enemy/nsdart.cpp +++ b/source/enemy/nsdart.cpp @@ -160,7 +160,7 @@ bool CNpcSquidDartEnemy::processSensor() void CNpcSquidDartEnemy::processClose( int _frames ) { s32 movement; - s32 yAim = playerYDist - 40; + s32 yAim = playerYDist - 20; //s32 maxSpeed = m_data[m_type].speed * _frames; s32 maxSpeed = m_speed * _frames; @@ -196,7 +196,7 @@ void CNpcSquidDartEnemy::processClose( int _frames ) } else { - if ( abs( yAim ) > 20 ) + if ( abs( yAim ) > 5 ) { movement = yAim;