Skip to content

Commit

Permalink
Fixed typo in reservedslots.sp (#2109)
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanBlackham authored and psychonic committed Jun 22, 2024
1 parent 363b4b6 commit 67991bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/reservedslots.sp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,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);
sv_visiblemaxplayers = FindConVar("sv_visiblemaxplayers");
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);
Expand Down

0 comments on commit 67991bb

Please sign in to comment.