Fix scripttype enum

This commit is contained in:
NepDisk 2025-03-29 12:11:55 -04:00
parent d72f4e8917
commit fcbb77f70d

View file

@ -39,9 +39,9 @@ enum acs_scriptType_e
ACS_ST_ENTER = 4, // ENTER: Runs when a player enters the game; both on start of the level, and when un-spectating.
ACS_ST_LAP = 5, // LAP: Runs when a player's lap increases from crossing the finish line.
ACS_ST_RACESTART = 6, // RACESTART: Runs when the RACE starts.
ACS_ST_OVERTIME = 8, // OVERTIME: Runs when Overtime starts in timed game modes.
ACS_ST_GAMEOVER = 9, // GAMEOVER: Runs when the level ends due to a losing condition and no player has an extra life.
ACS_ST_FINISH = 10, // FINISH: Runs when a player finishes
ACS_ST_OVERTIME = 7, // OVERTIME: Runs when Overtime starts in timed game modes.
ACS_ST_GAMEOVER = 8, // GAMEOVER: Runs when the level ends due to a losing condition and no player has an extra life.
ACS_ST_FINISH = 9, // FINISH: Runs when a player finishes
};
//