Footsteps: Ladder sound fix

This commit is contained in:
Marco Cawthorne 2020-04-03 15:29:24 +02:00
parent ab1338bab6
commit a159183b3d

View file

@ -147,7 +147,7 @@ Footsteps_Update(void)
}
/* make it so we step once we land */
if (!(self.flags & FL_ONGROUND)) {
if (!(self.flags & FL_ONGROUND) && !(self.flags & FL_ONLADDER)) {
self.fStepTime = 0.0f;
return;
}