Replace TOL_BOSS with TOL_VERSUS

Matches gametype name
This commit is contained in:
toaster 2023-04-21 17:51:30 +01:00
parent 5085bdfdd8
commit 3b595b0055
2 changed files with 4 additions and 4 deletions

View file

@ -581,8 +581,8 @@ enum TypeOfLevel
// Gametypes
TOL_RACE = 0x0001, ///< Race
TOL_BATTLE = 0x0002, ///< Battle
TOL_BOSS = 0x0004, ///< Boss (variant of battle, but forbidden)
TOL_SPECIAL = 0x0008, ///< Special Stage (variant of race, but forbidden)
TOL_SPECIAL = 0x0004, ///< 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)
// Modifiers

View file

@ -3388,7 +3388,7 @@ static gametype_t defaultgametypes[] =
"Versus",
"GT_VERSUS",
GTR_BOSS|GTR_SPHERES|GTR_BUMPERS|GTR_POINTLIMIT|GTR_CLOSERPLAYERS|GTR_NOCUPSELECT|GTR_ENCORE,
TOL_BOSS,
TOL_VERSUS,
int_scoreortimeattack,
0,
0,
@ -3546,8 +3546,8 @@ char *G_PrepareGametypeConstant(const char *newgtconst)
tolinfo_t TYPEOFLEVEL[NUMTOLNAMES] = {
{"RACE",TOL_RACE},
{"BATTLE",TOL_BATTLE},
{"BOSS",TOL_BOSS},
{"SPECIAL",TOL_SPECIAL},
{"VERSUS",TOL_VERSUS},
{"TUTORIAL",TOL_TUTORIAL},
{"TV",TOL_TV},
{NULL, 0}