FakeClients: fix small bug

This commit is contained in:
dogan 2020-07-20 13:36:45 +02:00
parent 9204e7081c
commit eb97a21c78

View File

@ -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;
}