diff --git a/source/platform/pbranch.cpp b/source/platform/pbranch.cpp index 2f26cadf0..8b8bf2e64 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 > 20 && newAngle < -64 ) + if ( m_angularVelocity > 10 && newAngle < -32 ) { player->springPlayerUp(); } } else { - if ( m_angularVelocity < -20 && newAngle > 64 ) + if ( m_angularVelocity < -10 && newAngle > 32 ) { player->springPlayerUp(); }