From 4fd3017e5fd7439ceabc96c561049eee06947026 Mon Sep 17 00:00:00 2001 From: jenz Date: Sat, 29 Aug 2026 15:30:52 +0200 Subject: [PATCH] re-added feature to just have the full list instead --- mapchooser_extended/scripting/nominations_extended_avg.sp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mapchooser_extended/scripting/nominations_extended_avg.sp b/mapchooser_extended/scripting/nominations_extended_avg.sp index c2e3ba5..443c97e 100755 --- a/mapchooser_extended/scripting/nominations_extended_avg.sp +++ b/mapchooser_extended/scripting/nominations_extended_avg.sp @@ -942,6 +942,7 @@ Menu BuildCategoryMenu(int client) AddMenuItem(menu, category, category); } + AddMenuItem(menu, "Full Map list", "Full Map list"); delete categories; SetMenuExitButton(menu, true); @@ -1026,7 +1027,7 @@ Menu BuildMapMenu(const char[] filter, int client, const char[] category = "") { GetArrayString(g_MapList, i, map, sizeof(map)); - if (category[0]) + if (category[0] && !StrEqual(category, "Full Map list")) { //only shows maps that are in this actual category. GetMapCategory(map, mapCategory, sizeof(mapCategory));