From 3fe87eff97641ca484010f8dba91c2065395f8d2 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Sat, 18 Jun 2016 23:55:43 +0100 Subject: [PATCH] Disabling the functionality of SL_NOPHYSICS for 2.1 patches by never applying it --- src/p_slopes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_slopes.c b/src/p_slopes.c index d939fee98..f134b20e9 100644 --- a/src/p_slopes.c +++ b/src/p_slopes.c @@ -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;