Fix unused flag

This commit is contained in:
NepDisk 2025-09-25 19:39:54 -04:00
parent 179db51639
commit 1f2cc02db4

View file

@ -479,38 +479,38 @@ enum GameTypeRules
{
// Race rules
GTR_CIRCUIT = 1, // Enables the finish line, laps, and the waypoint system.
GTR_RACEODDS = 1<<2, // ItemOdds used in this mode are for racing.
GTR_BOTS = 1<<3, // Allows bots in this gametype. Combine with BotTiccmd hooks to make bots support your gametype.
GTR_RINGS = 1<<4, // Allow Rings in this gametype.
GTR_RACEODDS = 1<<1, // ItemOdds used in this mode are for racing.
GTR_BOTS = 1<<2, // Allows bots in this gametype. Combine with BotTiccmd hooks to make bots support your gametype.
GTR_RINGS = 1<<3, // Allow Rings in this gametype.
// Battle gametype rules
GTR_BUMPERS = 1<<5, // Enables the bumper health system.
GTR_POINTS = 1<<6, // Get awarded score when hitting people.
GTR_BATTLEODDS = 1<<7, // ItemOdds used in this mode are for battling.
GTR_PAPERITEMS = 1<<8, // Replaces item boxes with paper item spawners.
GTR_WANTED = 1<<9, // Enables the wanted anti-camping system.
GTR_KARMA = 1<<10, // Enables the Karma system if you're out of bumpers.
GTR_ITEMARROWS = 1<<11, // Show item box arrows above players.
GTR_ITEMBREAKER = 1<<12, // Enables the use of Item Breaker in this Gamemode.
GTR_BATTLESTARTS = 1<<13, // Use Battle Mode start positions.
GTR_BUMPERS = 1<<4, // Enables the bumper health system.
GTR_POINTS = 1<<5, // Get awarded score when hitting people.
GTR_BATTLEODDS = 1<<6, // ItemOdds used in this mode are for battling.
GTR_PAPERITEMS = 1<<7, // Replaces item boxes with paper item spawners.
GTR_WANTED = 1<<8, // Enables the wanted anti-camping system.
GTR_KARMA = 1<<9, // Enables the Karma system if you're out of bumpers.
GTR_ITEMARROWS = 1<<10, // Show item box arrows above players.
GTR_ITEMBREAKER = 1<<11, // Enables the use of Item Breaker in this Gamemode.
GTR_BATTLESTARTS = 1<<12, // Use Battle Mode start positions.
GTR_POINTLIMIT = 1<<14, // Reaching point limit ends the round.
GTR_TIMELIMIT = 1<<15, // Reaching time limit ends the round.
GTR_OVERTIME = 1<<16, // Allow overtime behavior.
GTR_POINTLIMIT = 1<<13, // Reaching point limit ends the round.
GTR_TIMELIMIT = 1<<14, // Reaching time limit ends the round.
GTR_OVERTIME = 1<<15, // Allow overtime behavior.
// Custom gametype rules
GTR_TEAMS = 1<<17, // Teams are forced on.
GTR_NOTEAMS = 1<<18, // Teams are forced off.
GTR_TEAMSTARTS = 1<<19, // Use team-based start positions.
GTR_TEAMS = 1<<16, // Teams are forced on.
GTR_NOTEAMS = 1<<17, // Teams are forced off.
GTR_TEAMSTARTS = 1<<18, // Use team-based start positions.
// Grand Prix rules
//Free = 1<<20,
GTR_LIVES = 1<<21, // Lives system, players are forced to spectate during Game Over.
GTR_SPECIALBOTS = 1<<22, // Bot difficulty gets stronger between rounds, and the rival system is enabled.
//Free = 1<<19,
GTR_LIVES = 1<<20, // Lives system, players are forced to spectate during Game Over.
GTR_SPECIALBOTS = 1<<21, // Bot difficulty gets stronger between rounds, and the rival system is enabled.
// Misc
GTR_NOCOUNTDOWN = 1<<23, // Disables Countdown timer and control lock at the start of levels.
GTR_ENCORE = 1<<24, // Enable Encore mode.
GTR_NOCOUNTDOWN = 1<<22, // Disables Countdown timer and control lock at the start of levels.
GTR_ENCORE = 1<<23, // Enable Encore mode.
// free: to and including 1<<31
};