updated numbers just

This commit is contained in:
jenz 2024-07-30 20:26:19 +02:00
parent 770f17c31e
commit be9d9dca43

View File

@ -528,6 +528,16 @@ public void CheckPopulation()
max = iPlayers;
min = RoundToFloor(iPlayers * 0.5);
}
else if (iPlayers < 26)
{
max = iPlayers;
min = RoundToFloor(iPlayers * 0.3);
}
else if (iPlayers < 36)
{
max = RoundToFloor(iPlayers * 0.5);
min = RoundToFloor(iPlayers * 0.3);
}
else
{
max = RoundToFloor(iPlayers * 0.5);
@ -536,7 +546,7 @@ public void CheckPopulation()
iFakesNeeded = GetRandomInt(min, max);
//iFakesNeeded = randomAmount - iPlayers;
if (iFakesNeeded < 0 || iPlayers > 25)
if (iFakesNeeded < 0 || iPlayers > 45)
{
iFakesNeeded = 0;
iFakesInTeamNeeded = 0;