Fix missing line for trick panels

This commit is contained in:
Sally Coolatta 2022-01-05 17:58:48 -05:00
parent 8326f32456
commit c5279e5795

View file

@ -416,6 +416,9 @@ void K_ProcessTerrainEffect(mobj_t *mo)
player->pflags |= PF_TRICKDELAY;
K_DoPogoSpring(mo, upwards, 1);
// Reduce speed
speed /= 2;
if (speed < minspeed)
{
speed = minspeed;