mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-12 21:26:26 +00:00
Fix custom terrain footsteps never being considered under offroad conditions
This commit is contained in:
parent
26cdc0f003
commit
661285d3c6
1 changed files with 2 additions and 2 deletions
|
|
@ -979,10 +979,10 @@ void K_HandleFootstepParticles(mobj_t *mo)
|
|||
// No TERRAIN effects for this object.
|
||||
return;
|
||||
}
|
||||
|
||||
fs = K_GetFootstepByIndex(mo->terrain->footstepID);
|
||||
}
|
||||
|
||||
fs = K_GetFootstepByIndex(mo->terrain->footstepID);
|
||||
|
||||
if (mo->player != NULL)
|
||||
{
|
||||
// Match behaviour of the previous entry in the series:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue