mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
Wrong var name oops
I autopiloted
This commit is contained in:
parent
e365b7f0b3
commit
fee1ccdc0d
1 changed files with 2 additions and 2 deletions
|
|
@ -633,12 +633,12 @@ static void K_SpawnFootstepParticle(mobj_t *mo, t_footstep_t *fs)
|
||||||
if ((leveltime / 2) & 1)
|
if ((leveltime / 2) & 1)
|
||||||
{
|
{
|
||||||
tireAngle -= ANGLE_45;
|
tireAngle -= ANGLE_45;
|
||||||
tireAngle -= P_RandomRange(0, footstep->cone);
|
tireAngle -= P_RandomRange(0, fs->cone);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
tireAngle += ANGLE_45;
|
tireAngle += ANGLE_45;
|
||||||
tireAngle += P_RandomRange(0, footstep->cone);
|
tireAngle += P_RandomRange(0, fs->cone);
|
||||||
}
|
}
|
||||||
|
|
||||||
pushAngle = K_MomentumAngle(mo) + ANGLE_180;
|
pushAngle = K_MomentumAngle(mo) + ANGLE_180;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue