diff --git a/src/m_menu.c b/src/m_menu.c index f0f4e85ae0fa6ad2f0204edbbc57af08972acaba..92dfe8ff45f0b2f8fce27a7497e381067c8571e9 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -1663,8 +1663,11 @@ static menuitem_t OP_ServerOptionsMenu[] = #ifndef NONET {IT_HEADER, NULL, "Advanced", NULL, 225}, {IT_STRING | IT_CVAR | IT_CV_STRING, NULL, "Master server", &cv_masterserver, 231}, + {IT_STRING | IT_CVAR, NULL, "Join delay", &cv_joindelay, 246}, {IT_STRING | IT_CVAR, NULL, "Attempts to resynchronise", &cv_resynchattempts, 251}, + + {IT_STRING | IT_CVAR, NULL, "Show IP Address of Joiners", &cv_showjoinaddress, 256}, #endif }; diff --git a/src/m_menu.h b/src/m_menu.h index 88c06ae6fe9bbbf356a04380262417d51ee73b7a..0465128ef75063b57cd3849bb6faab251e45e139 100644 --- a/src/m_menu.h +++ b/src/m_menu.h @@ -327,7 +327,7 @@ typedef struct menuitem_s void *itemaction; // hotkey in menu or y of the item - UINT8 alphaKey; + UINT16 alphaKey; } menuitem_t; extern menuitem_t MP_RoomMenu[];