Merge branch 'battle-backthrow-jawz' into 'master'

Fix backthrown Battle jawz having .0001% friction

See merge request kart-krew-dev/ring-racers-internal!2840
This commit is contained in:
Oni VelocitOni 2025-09-14 22:02:06 +00:00
commit 52aab9b74c

View file

@ -222,7 +222,7 @@ void Obj_JawzThink(mobj_t *th)
ghost->colorized = true;
}
if (JawzSteersBetter() == true)
if (JawzSteersBetter() == true && !jawz_stillturn(th) && (th->momx != 0 && th->momy != 0))
{
th->friction = max(0, 3 * th->friction / 4);
}