From 54d3ded19bac756ef29c316fa599a977801c9559 Mon Sep 17 00:00:00 2001 From: dogan Date: Mon, 20 Jul 2020 13:36:45 +0200 Subject: [PATCH] FakeClients: fix small bug --- FakeClients/scripting/FakeClients.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FakeClients/scripting/FakeClients.sp b/FakeClients/scripting/FakeClients.sp index b1352087..c3d383f2 100644 --- a/FakeClients/scripting/FakeClients.sp +++ b/FakeClients/scripting/FakeClients.sp @@ -107,7 +107,7 @@ public void OnMapStart() g_bBlockInstantFakeConnects = false; g_iBlockInstantFakeConnects = 0; - CreateTimer(4.0, BlockInstantFakeConnects, _, TIMER_REPEAT); + CreateTimer(5.0, BlockInstantFakeConnects, _, TIMER_REPEAT); } //---------------------------------------------------------------------------------------------------- @@ -387,7 +387,7 @@ public void CheckPopulation() } else { - iFakesNeeded = 4; + iFakesNeeded = 5; iFakesInTeamNeeded = 0; } @@ -434,7 +434,7 @@ public void CheckPopulation() //CS_SetClientClanTag(iIndex, "UNLOZE"); iFakes++; - if(g_iBlockInstantFakeConnects <= 5) + if(g_iBlockInstantFakeConnects <= 6) g_bBlockInstantFakeConnects = true; }