Menus/Server Options: add server_contact, advertise; add masterserver_debug to Advanced

This commit is contained in:
James R 2023-12-31 11:53:10 -08:00
parent 104c65fb9f
commit 021fb63c90
2 changed files with 9 additions and 0 deletions

View file

@ -12,6 +12,12 @@ menuitem_t OPTIONS_Server[] =
{IT_STRING | IT_CVAR | IT_CV_STRING, "Server Name", "Change the name of your server.",
NULL, {.cvar = &cv_servername}, 0, 0},
{IT_STRING | IT_CVAR | IT_CV_STRING, "Server Contact", "Where you should be contacted for Master Server moderation.",
NULL, {.cvar = &cv_server_contact}, 0, 0},
{IT_STRING | IT_CVAR, "Advertise", "Display your game in the Server Browser for other players.",
NULL, {.cvar = &cv_advertise}, 0, 0},
{IT_HEADER, "Progression...", NULL,
NULL, {NULL}, 0, 0},

View file

@ -12,6 +12,9 @@ menuitem_t OPTIONS_ServerAdvanced[] =
{IT_STRING | IT_CVAR | IT_CV_STRING, "Server Browser Address", "Default is \'https://ms.kartkrew.org/ms/api\'",
NULL, {.cvar = &cv_masterserver}, 0, 0},
{IT_STRING | IT_CVAR, "Debug Log", "Save technical info about communication with the Master Server.",
NULL, {.cvar = &cv_noticedownload}, 0, 0},
{IT_HEADER, "Network Connection", NULL,
NULL, {NULL}, 0, 0},