Flip dynamic slope toggle.

This commit is contained in:
toaster 2018-09-28 12:58:07 +01:00
parent eb4a967d8e
commit 8ccaa1fcee
1 changed files with 1 additions and 1 deletions

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;