Always quantize momentum on slopes, even if no physics

Lets no physics slopes launch. Travel time will be
affected by 3D surface area instead of just 2D surface.
This commit is contained in:
James R 2023-02-16 19:23:45 -08:00
parent 5b561815d7
commit f29e5d8270

View file

@ -987,9 +987,6 @@ void P_QuantizeMomentumToSlope(vector3_t *momentum, pslope_t *slope)
{
vector3_t axis; // Fuck you, C90.
if (slope->flags & SL_NOPHYSICS)
return; // No physics, no quantizing.
axis.x = -slope->d.y;
axis.y = slope->d.x;
axis.z = 0;