Merge branch 'always-quantize-slopes' into 'master'

Let no physics slopes slope launch

See merge request KartKrew/Kart!931
This commit is contained in:
Oni 2023-02-17 04:03:14 +00:00
commit 474d3cd228

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;