mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
Change turbine fast speed criteria from 133 to 200%
This commit is contained in:
parent
4a2f3745f0
commit
1e86d661a5
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ void Obj_WPZTurbineThinker(mobj_t *mo)
|
||||||
p->turbineheight = baseheight;
|
p->turbineheight = baseheight;
|
||||||
p->turbinespd = false;
|
p->turbinespd = false;
|
||||||
|
|
||||||
if (FixedDiv(p->speed, K_GetKartSpeed(p, false, false)) > FRACUNIT + FRACUNIT/3 // 133% speed
|
if (FixedDiv(p->speed, K_GetKartSpeed(p, false, false)) > FRACUNIT*2 // 200% speed
|
||||||
&& baseheight != sneakerheight)
|
&& baseheight != sneakerheight)
|
||||||
{
|
{
|
||||||
p->turbineheight = sneakerheight;
|
p->turbineheight = sneakerheight;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue