mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
Replace TOL_BOSS with TOL_VERSUS
Matches gametype name
This commit is contained in:
parent
5085bdfdd8
commit
3b595b0055
2 changed files with 4 additions and 4 deletions
|
|
@ -581,8 +581,8 @@ enum TypeOfLevel
|
||||||
// Gametypes
|
// Gametypes
|
||||||
TOL_RACE = 0x0001, ///< Race
|
TOL_RACE = 0x0001, ///< Race
|
||||||
TOL_BATTLE = 0x0002, ///< Battle
|
TOL_BATTLE = 0x0002, ///< Battle
|
||||||
TOL_BOSS = 0x0004, ///< Boss (variant of battle, but forbidden)
|
TOL_SPECIAL = 0x0004, ///< Special Stage (variant of race, but forbidden)
|
||||||
TOL_SPECIAL = 0x0008, ///< Special Stage (variant of race, but forbidden)
|
TOL_VERSUS = 0x0008, ///< Versus (variant of battle, but forbidden)
|
||||||
TOL_TUTORIAL = 0x0010, ///< Tutorial (variant of race, but forbidden)
|
TOL_TUTORIAL = 0x0010, ///< Tutorial (variant of race, but forbidden)
|
||||||
|
|
||||||
// Modifiers
|
// Modifiers
|
||||||
|
|
|
||||||
|
|
@ -3388,7 +3388,7 @@ static gametype_t defaultgametypes[] =
|
||||||
"Versus",
|
"Versus",
|
||||||
"GT_VERSUS",
|
"GT_VERSUS",
|
||||||
GTR_BOSS|GTR_SPHERES|GTR_BUMPERS|GTR_POINTLIMIT|GTR_CLOSERPLAYERS|GTR_NOCUPSELECT|GTR_ENCORE,
|
GTR_BOSS|GTR_SPHERES|GTR_BUMPERS|GTR_POINTLIMIT|GTR_CLOSERPLAYERS|GTR_NOCUPSELECT|GTR_ENCORE,
|
||||||
TOL_BOSS,
|
TOL_VERSUS,
|
||||||
int_scoreortimeattack,
|
int_scoreortimeattack,
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
@ -3546,8 +3546,8 @@ char *G_PrepareGametypeConstant(const char *newgtconst)
|
||||||
tolinfo_t TYPEOFLEVEL[NUMTOLNAMES] = {
|
tolinfo_t TYPEOFLEVEL[NUMTOLNAMES] = {
|
||||||
{"RACE",TOL_RACE},
|
{"RACE",TOL_RACE},
|
||||||
{"BATTLE",TOL_BATTLE},
|
{"BATTLE",TOL_BATTLE},
|
||||||
{"BOSS",TOL_BOSS},
|
|
||||||
{"SPECIAL",TOL_SPECIAL},
|
{"SPECIAL",TOL_SPECIAL},
|
||||||
|
{"VERSUS",TOL_VERSUS},
|
||||||
{"TUTORIAL",TOL_TUTORIAL},
|
{"TUTORIAL",TOL_TUTORIAL},
|
||||||
{"TV",TOL_TV},
|
{"TV",TOL_TV},
|
||||||
{NULL, 0}
|
{NULL, 0}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue