Nitro makes you faster
This commit is contained in:
parent
30f9460b97
commit
7d55d196c4
@ -10,6 +10,8 @@ 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).
|
||||||
|
|
||||||
|
- Nitro engine force and mult are multiplied by two each.
|
||||||
|
|
||||||
- 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)
|
- The speed limit is practically removed (set to the highest float possible)
|
@ -1151,13 +1151,13 @@ float KartProperties::getNitroDuration() const
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getNitroEngineForce() const
|
float KartProperties::getNitroEngineForce() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getNitroEngineForce() * 1.5f;
|
return m_cached_characteristic->getNitroEngineForce() * 2.0f;
|
||||||
} // getNitroEngineForce
|
} // getNitroEngineForce
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
float KartProperties::getNitroEngineMult() const
|
float KartProperties::getNitroEngineMult() const
|
||||||
{
|
{
|
||||||
return m_cached_characteristic->getNitroEngineMult() * 1.5f;
|
return m_cached_characteristic->getNitroEngineMult() * 2.0f;
|
||||||
} // getNitroEngineMult
|
} // getNitroEngineMult
|
||||||
|
|
||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user