Fixed auto-rescue when a kart is about to topple over.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@5835 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk
2010-08-31 10:30:26 +00:00
parent b69b719fcd
commit 48e7b4542b

View File

@@ -719,7 +719,7 @@ void Kart::update(float dt)
m_skid_sound->position ( getXYZ() );
// Check if a kart is (nearly) upside down and not moving much --> automatic rescue
if((fabs(getHPR().getRoll())>60 && fabs(getSpeed())<3.0f) )
if((fabs(getRoll())>60*DEGREE_TO_RAD && fabs(getSpeed())<3.0f) )
{
forceRescue();
}
@@ -1330,7 +1330,7 @@ void Kart::updatePhysics(float dt)
,m_body->getAngularVelocity().getX()
,m_body->getAngularVelocity().getY()
,m_body->getAngularVelocity().getZ()
,getHPR().getHeading()
,getHeading()
);
#endif