From 6f40dd42da3816b479c45a1bdd5e376f956668aa Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 16 Jul 2001 16:27:32 +0000 Subject: [PATCH] --- source/enemy/nsdart.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/enemy/nsdart.cpp b/source/enemy/nsdart.cpp index e9d370c1d..10ab33f11 100644 --- a/source/enemy/nsdart.cpp +++ b/source/enemy/nsdart.cpp @@ -60,7 +60,7 @@ void CNpcSquidDartEnemy::render() renderPos.vx -= 32; } - renderPos.vy -= 6; + //renderPos.vy -= 6; // bodge int frame = FRM_SQUIDDART_SWIM0001 + ( m_frame >> 8 ); @@ -83,7 +83,8 @@ void CNpcSquidDartEnemy::render() setCollisionSize( ( XMax - XMin ), ( YMax - YMin ) ); // bodge - setCollisionCentreOffset( 0, 0 ); //( XMax + XMin ) >> 1, ( YMax + YMin ) >> 1 ); + //setCollisionCentreOffset( 0, 0 ); //( XMax + XMin ) >> 1, ( YMax + YMin ) >> 1 ); + setCollisionCentreOffset( 0, ( YMax + YMin ) >> 1 ); //( XMax + XMin ) >> 1, ( YMax + YMin ) >> 1 ); } } }