mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-23 06:56:17 +00:00
Merge branch 'invert_dynamic_slopes' into 'master'
Flip dynamic slope toggle See merge request KartKrew/Kart!17
This commit is contained in:
commit
0e04819573
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue