diff --git a/src/k_menu.h b/src/k_menu.h index 1d4133419..71591418a 100644 --- a/src/k_menu.h +++ b/src/k_menu.h @@ -404,8 +404,8 @@ typedef enum gopt_exitcountdown, gopt_spacer1, gopt_timelimit, + gopt_pointlimit, gopt_startingbumpers, - gopt_karmacomeback, gopt_spacer2, gopt_itemtoggles } gopt_e; diff --git a/src/menus/options-gameplay-1.c b/src/menus/options-gameplay-1.c index 0d4831188..5dee8e2ff 100644 --- a/src/menus/options-gameplay-1.c +++ b/src/menus/options-gameplay-1.c @@ -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},