updated fakeclients slightly and changed mapchooser for loops to not miss the last client

This commit is contained in:
jenz
2026-03-27 17:34:04 +01:00
parent 6a5cbf74f1
commit 6790e463fc
4 changed files with 30 additions and 18 deletions
+11 -1
View File
@@ -508,7 +508,17 @@ public void CheckPopulation()
int full_client_count = GetClientCount(false);
if (full_client_count > 50) //counting all clients in total.
if (full_client_count > 50 && iFakes > 15)
{
iFakesInTeamNeeded = 3;
iFakesNeeded = 15;
}
else if (full_client_count > 54 && iFakes > 8)
{
iFakesInTeamNeeded = 2;
iFakesNeeded = 5;
}
else if (full_client_count > 59 && iFakes > 0) //counting all clients in total.
{
iFakesInTeamNeeded = 0;
iFakesNeeded = 0;