diff --git a/plugins/nominations.sp b/plugins/nominations.sp index b842a7da..fe94995e 100644 --- a/plugins/nominations.sp +++ b/plugins/nominations.sp @@ -69,8 +69,8 @@ public void OnPluginStart() int arraySize = ByteCountToCells(PLATFORM_MAX_PATH); g_MapList = new ArrayList(arraySize); - g_Cvar_ExcludeOld = CreateConVar("sm_nominate_excludeold", "1", "Specifies if the current map should be excluded from the Nominations list", 0, true, 0.00, true, 1.0); - g_Cvar_ExcludeCurrent = CreateConVar("sm_nominate_excludecurrent", "1", "Specifies if the MapChooser excluded maps should also be excluded from Nominations", 0, true, 0.00, true, 1.0); + g_Cvar_ExcludeOld = CreateConVar("sm_nominate_excludeold", "1", "Specifies if the MapChooser excluded maps should also be excluded from Nominations", 0, true, 0.00, true, 1.0); + g_Cvar_ExcludeCurrent = CreateConVar("sm_nominate_excludecurrent", "1", "Specifies if the current map should be excluded from the Nominations list", 0, true, 0.00, true, 1.0); RegConsoleCmd("sm_nominate", Command_Nominate);