This commit is contained in:
Charles 2001-05-10 20:54:57 +00:00
parent 501e4d4a70
commit 9b4312afd7

View file

@ -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();
}