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

@ -11,3 +11,5 @@ What I've changed in the mod:
nitro collecting levels).
- 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
{
return m_cached_characteristic->getEngineMaxSpeed();
return 340282346638528859811704183484516925440.0f;
//return m_cached_characteristic->getEngineMaxSpeed();
} // getEngineMaxSpeed
// ----------------------------------------------------------------------------