This commit is contained in:
Charles 2001-06-20 18:22:39 +00:00
parent 0dfd1948fb
commit ecc4e806c3
2 changed files with 3 additions and 2 deletions

View File

@ -119,14 +119,14 @@ void CNpcBranchPlatform::processMovement( int _frames )
if ( m_reversed )
{
if ( m_angularVelocity > 8 && newAngle < -20 )
if ( m_angularVelocity > 6 && newAngle < -20 )
{
player->springPlayerUp();
}
}
else
{
if ( m_angularVelocity < -8 && newAngle > 20 )
if ( m_angularVelocity < -6 && newAngle > 20 )
{
player->springPlayerUp();
}

View File

@ -23,6 +23,7 @@ class CNpcBranchPlatform : public CNpcPlatform
public:
virtual void postInit();
virtual void render();
virtual CRECT const *getThinkBBox() {return( &getCollisionArea() );}
protected:
virtual void setWaypoints( sThingPlatform *ThisPlatform );
virtual void processMovement( int _frames );