Skip to content
Snippets Groups Projects
Commit 8c33cb91 authored by toaster's avatar toaster
Browse files

Merge branch...

Merge branch '100-make-slopes-static-by-default-and-require-flag-to-turn-them-dynamic' into 'master'

Resolve "Make slopes static by default, and require flag to turn them dynamic."

Closes #100

See merge request STJr/SRB2Internal!140
parents 66733d96 fc3e863f
No related branches found
No related tags found
No related merge requests found
...@@ -251,7 +251,7 @@ void P_SpawnSlope_Line(int linenum) ...@@ -251,7 +251,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;
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)
flags |= SL_ANCHORVERTEX; flags |= SL_ANCHORVERTEX;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment