From 102fa64a777b4301e99b7921de1e352f9143cdab Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Fri, 22 Jun 2007 04:35:27 +0000 Subject: [PATCH] don't fix what isn't broken I guess :\ (Fixed reserved slots once and for all...) --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401005 --- plugins/reservedslots.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/reservedslots.sp b/plugins/reservedslots.sp index 7d17f042..bbec6a0c 100644 --- a/plugins/reservedslots.sp +++ b/plugins/reservedslots.sp @@ -100,7 +100,7 @@ SetVisibleMaxSlots(clients, limit) { new num = clients + 1; - if (clients == g_MaxClients || clients > limit) + if (clients == g_MaxClients) { num = g_MaxClients; } else if (clients < limit) {