mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Menus/Gameplay Options: add pointlimit to Battle section
This commit is contained in:
parent
483519ea07
commit
91bb575d60
2 changed files with 4 additions and 1 deletions
|
|
@ -404,8 +404,8 @@ typedef enum
|
||||||
gopt_exitcountdown,
|
gopt_exitcountdown,
|
||||||
gopt_spacer1,
|
gopt_spacer1,
|
||||||
gopt_timelimit,
|
gopt_timelimit,
|
||||||
|
gopt_pointlimit,
|
||||||
gopt_startingbumpers,
|
gopt_startingbumpers,
|
||||||
gopt_karmacomeback,
|
|
||||||
gopt_spacer2,
|
gopt_spacer2,
|
||||||
gopt_itemtoggles
|
gopt_itemtoggles
|
||||||
} gopt_e;
|
} gopt_e;
|
||||||
|
|
|
||||||
|
|
@ -31,6 +31,9 @@ menuitem_t OPTIONS_Gameplay[] =
|
||||||
{IT_STRING | IT_CVAR, "Time Limit", "Change the time limit for Battle rounds.",
|
{IT_STRING | IT_CVAR, "Time Limit", "Change the time limit for Battle rounds.",
|
||||||
NULL, {.cvar = &cv_timelimit}, 0, 0},
|
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.",
|
{IT_STRING | IT_CVAR, "Starting Bumpers", "Change how many bumpers player start with in Battle.",
|
||||||
NULL, {.cvar = &cv_kartbumpers}, 0, 0},
|
NULL, {.cvar = &cv_kartbumpers}, 0, 0},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue