Nitro makes you faster

This commit is contained in:
ilikecats 2024-07-14 12:17:49 -07:00
parent 30f9460b97
commit 7d55d196c4
2 changed files with 4 additions and 2 deletions

View File

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

View File

@ -1151,13 +1151,13 @@ float KartProperties::getNitroDuration() const
// ----------------------------------------------------------------------------
float KartProperties::getNitroEngineForce() const
{
return m_cached_characteristic->getNitroEngineForce() * 1.5f;
return m_cached_characteristic->getNitroEngineForce() * 2.0f;
} // getNitroEngineForce
// ----------------------------------------------------------------------------
float KartProperties::getNitroEngineMult() const
{
return m_cached_characteristic->getNitroEngineMult() * 1.5f;
return m_cached_characteristic->getNitroEngineMult() * 2.0f;
} // getNitroEngineMult
// ----------------------------------------------------------------------------