mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-25 13:51:43 +00:00
Disabling the functionality of SL_NOPHYSICS for 2.1 patches by never applying it
This commit is contained in:
parent
9c277bfb22
commit
3fe87eff97
1 changed files with 2 additions and 2 deletions
|
@ -250,7 +250,7 @@ void P_SpawnSlope_Line(int linenum)
|
||||||
|
|
||||||
UINT8 flags = 0; // Slope flags
|
UINT8 flags = 0; // Slope flags
|
||||||
if (line->flags & ML_NOSONIC)
|
if (line->flags & ML_NOSONIC)
|
||||||
flags |= SL_NOPHYSICS;
|
; // flags |= SL_NOPHYSICS; - disabled for 2.1
|
||||||
if (line->flags & ML_NOTAILS)
|
if (line->flags & ML_NOTAILS)
|
||||||
flags |= SL_NODYNAMIC;
|
flags |= SL_NODYNAMIC;
|
||||||
if (line->flags & ML_NOKNUX)
|
if (line->flags & ML_NOKNUX)
|
||||||
|
@ -686,7 +686,7 @@ void P_ResetDynamicSlopes(void) {
|
||||||
|
|
||||||
UINT8 flags = SL_VERTEXSLOPE;
|
UINT8 flags = SL_VERTEXSLOPE;
|
||||||
if (lines[i].flags & ML_NOSONIC)
|
if (lines[i].flags & ML_NOSONIC)
|
||||||
flags |= SL_NOPHYSICS;
|
; // flags |= SL_NOPHYSICS; - disabled for 2.1
|
||||||
if (!(lines[i].flags & ML_NOTAILS))
|
if (!(lines[i].flags & ML_NOTAILS))
|
||||||
flags |= SL_NODYNAMIC;
|
flags |= SL_NODYNAMIC;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue