From 021fb63c90cbd2020a4afe4b9fe0720a097b0404 Mon Sep 17 00:00:00 2001 From: James R Date: Sun, 31 Dec 2023 11:53:10 -0800 Subject: [PATCH] Menus/Server Options: add server_contact, advertise; add masterserver_debug to Advanced --- src/menus/options-server-1.c | 6 ++++++ src/menus/options-server-advanced.c | 3 +++ 2 files changed, 9 insertions(+) diff --git a/src/menus/options-server-1.c b/src/menus/options-server-1.c index 2333c5e43..bbd9a20e3 100644 --- a/src/menus/options-server-1.c +++ b/src/menus/options-server-1.c @@ -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}, diff --git a/src/menus/options-server-advanced.c b/src/menus/options-server-advanced.c index 055954e94..8e084d2d3 100644 --- a/src/menus/options-server-advanced.c +++ b/src/menus/options-server-advanced.c @@ -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},