Skip to content
Snippets Groups Projects
Commit 3fe87eff authored by toaster's avatar toaster
Browse files

Disabling the functionality of SL_NOPHYSICS for 2.1 patches by never applying it

parent 9c277bfb
No related branches found
No related tags found
No related merge requests found
......@@ -250,7 +250,7 @@ void P_SpawnSlope_Line(int linenum)
UINT8 flags = 0; // Slope flags
if (line->flags & ML_NOSONIC)
flags |= SL_NOPHYSICS;
; // flags |= SL_NOPHYSICS; - disabled for 2.1
if (line->flags & ML_NOTAILS)
flags |= SL_NODYNAMIC;
if (line->flags & ML_NOKNUX)
......@@ -686,7 +686,7 @@ void P_ResetDynamicSlopes(void) {
UINT8 flags = SL_VERTEXSLOPE;
if (lines[i].flags & ML_NOSONIC)
flags |= SL_NOPHYSICS;
; // flags |= SL_NOPHYSICS; - disabled for 2.1
if (!(lines[i].flags & ML_NOTAILS))
flags |= SL_NODYNAMIC;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment