From 60762b972705526bb586dd5a9e29733af09b462c Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 14 May 2001 22:29:01 +0000 Subject: [PATCH] --- source/platform/pbranch.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/platform/pbranch.cpp b/source/platform/pbranch.cpp index a1bb8365e..bb9975ef1 100644 --- a/source/platform/pbranch.cpp +++ b/source/platform/pbranch.cpp @@ -154,14 +154,14 @@ void CNpcBranchPlatform::processMovement( int _frames ) if ( m_reversed ) { - if ( m_angularVelocity > 10 && newAngle < -32 ) + if ( m_angularVelocity > 8 && newAngle < -20 ) { player->springPlayerUp(); } } else { - if ( m_angularVelocity < -10 && newAngle > 32 ) + if ( m_angularVelocity < -8 && newAngle > 20 ) { player->springPlayerUp(); } @@ -188,7 +188,7 @@ void CNpcBranchPlatform::processMovement( int _frames ) m_angularVelocity += angularForce; } - s32 resistance = -( 5 * _frames * newAngle ) >> 8; + s32 resistance = -( 10 * _frames * newAngle ) >> 8; if ( newAngle > 0 && resistance > -2 ) {