Correct some miscalculation in previous commit; but on the way, max the speed boost less powerful with regard to max speed, I like it better this way ;)

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@8643 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2011-05-19 01:01:08 +00:00
parent 41ef52118f
commit f6bc7a0a71

View File

@ -1379,7 +1379,7 @@ void Kart::updatePhysics(float dt)
m_has_started = true;
float f = m_kart_properties->getStartupBoost();
m_vehicle->activateZipper(f);
MaxSpeed::increaseMaxSpeed(MS_INCREASE_ZIPPER, 0.6f*f,
MaxSpeed::increaseMaxSpeed(MS_INCREASE_ZIPPER, 0.9f*f,
5.0f, 5.0f);
}