Removed speed limit

This commit is contained in:
ilikecats 2024-07-06 12:46:28 -07:00
parent 12fb756d89
commit 30f9460b97
2 changed files with 5 additions and 2 deletions

View File

@ -10,4 +10,6 @@ What I've changed in the mod:
- Using nitro gives you nitro, instead of taking it away (can help beating - Using nitro gives you nitro, instead of taking it away (can help beating
nitro collecting levels). nitro collecting levels).
- There is no more auto rescue, use backspace instead. - There is no more auto rescue, use backspace instead.
- The speed limit is practically removed (set to the highest float possible)

View File

@ -826,7 +826,8 @@ float KartProperties::getEnginePower() const
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
float KartProperties::getEngineMaxSpeed() const float KartProperties::getEngineMaxSpeed() const
{ {
return m_cached_characteristic->getEngineMaxSpeed(); return 340282346638528859811704183484516925440.0f;
//return m_cached_characteristic->getEngineMaxSpeed();
} // getEngineMaxSpeed } // getEngineMaxSpeed
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------