Menus/Gameplay Options: add pointlimit to Battle section

This commit is contained in:
James R 2023-12-31 10:22:07 -08:00
parent 483519ea07
commit 91bb575d60
2 changed files with 4 additions and 1 deletions

View file

@ -404,8 +404,8 @@ typedef enum
gopt_exitcountdown,
gopt_spacer1,
gopt_timelimit,
gopt_pointlimit,
gopt_startingbumpers,
gopt_karmacomeback,
gopt_spacer2,
gopt_itemtoggles
} gopt_e;

View file

@ -31,6 +31,9 @@ menuitem_t OPTIONS_Gameplay[] =
{IT_STRING | IT_CVAR, "Time Limit", "Change the time limit for Battle rounds.",
NULL, {.cvar = &cv_timelimit}, 0, 0},
{IT_STRING | IT_CVAR, "Point Limit", "How many strikes it takes to win a Battle.",
NULL, {.cvar = &cv_pointlimit}, 0, 0},
{IT_STRING | IT_CVAR, "Starting Bumpers", "Change how many bumpers player start with in Battle.",
NULL, {.cvar = &cv_kartbumpers}, 0, 0},