Merge branch 'invert_dynamic_slopes' into 'master'

Flip dynamic slope toggle

See merge request KartKrew/Kart!17
This commit is contained in:
Sryder 2018-09-29 16:51:35 -04:00
commit 5322caa435

View file

@ -251,7 +251,7 @@ void P_SpawnSlope_Line(int linenum)
UINT8 flags = 0; // Slope flags
if (line->flags & ML_NOSONIC)
flags |= SL_NOPHYSICS;
if (line->flags & ML_NOTAILS)
if (!(line->flags & ML_NOTAILS))
flags |= SL_NODYNAMIC;
if (line->flags & ML_NOKNUX)
flags |= SL_ANCHORVERTEX;