Do not multiply TERRAIN speedPad value

This commit is contained in:
James R 2022-10-18 18:20:19 -07:00 committed by NepDisk
parent 709f7203d5
commit 0297e6a0e4

View file

@ -532,7 +532,7 @@ void K_ProcessTerrainEffect(mobj_t *mo)
}
else
{
fixed_t thrustSpeed = terrain->speedPad * 16;
fixed_t thrustSpeed = terrain->speedPad;
angle_t thrustAngle = terrain->speedPadAngle;
fixed_t playerSpeed = P_AproxDistance(player->mo->momx, player->mo->momy);