From fbd8eb5e43b145eec18a70e635ad617bfc691e21 Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 17 Jul 2001 16:38:59 +0000 Subject: [PATCH] --- source/enemy/nsdart.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;