updated numbers just
This commit is contained in:
parent
770f17c31e
commit
be9d9dca43
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user