mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Support "starpostactivator" in UDMF parameter read, to avoid having to reconvert a bunch of things
This commit is contained in:
parent
85e6e743d4
commit
76b798d907
1 changed files with 1 additions and 1 deletions
|
|
@ -1712,7 +1712,7 @@ static void ParseTextmapSectorParameter(UINT32 i, const char *param, const char
|
|||
sectors[i].specialflags |= SSF_DOUBLESTEPUP;
|
||||
else if (fastcmp(param, "nostepdown") && fastcmp("true", val))
|
||||
sectors[i].specialflags |= SSF_NOSTEPDOWN;
|
||||
else if (fastcmp(param, "cheatcheckactivator") && fastcmp("true", val))
|
||||
else if ((fastcmp(param, "cheatcheckactivator") || fastcmp(param, "starpostactivator")) && fastcmp("true", val))
|
||||
sectors[i].specialflags |= SSF_CHEATCHECKACTIVATOR;
|
||||
else if (fastcmp(param, "exit") && fastcmp("true", val))
|
||||
sectors[i].specialflags |= SSF_EXIT;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue