From 7bb9da2a26fd7df81e52dcca64c6df9ba1d10a23 Mon Sep 17 00:00:00 2001 From: Ryan Blackham <40574343+RyanBlackham@users.noreply.github.com> Date: Thu, 1 Feb 2024 09:36:28 +0000 Subject: [PATCH] Fixed typo in reservedslots.sp (#2109) --- plugins/reservedslots.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/reservedslots.sp b/plugins/reservedslots.sp index 077c45ad..fb43fdd1 100644 --- a/plugins/reservedslots.sp +++ b/plugins/reservedslots.sp @@ -82,7 +82,7 @@ public void OnPluginStart() LoadTranslations("reservedslots.phrases"); sm_reserved_slots = CreateConVar("sm_reserved_slots", "0", "Number of reserved player slots", 0, true, 0.0); - sm_hide_slots = CreateConVar("sm_hide_slots", "0", "If set to 1, reserved slots will hidden (subtracted from the max slot count)", 0, true, 0.0, true, 1.0); + sm_hide_slots = CreateConVar("sm_hide_slots", "0", "If set to 1, reserved slots will be hidden (subtracted from the max slot count)", 0, true, 0.0, true, 1.0); sm_reserve_type = CreateConVar("sm_reserve_type", "0", "Method of reserving slots", 0, true, 0.0, true, 2.0); sm_reserve_maxadmins = CreateConVar("sm_reserve_maxadmins", "1", "Maximum amount of admins to let in the server with reserve type 2", 0, true, 0.0); sm_reserve_kicktype = CreateConVar("sm_reserve_kicktype", "0", "How to select a client to kick (if appropriate)", 0, true, 0.0, true, 2.0);