last edit for now

This commit is contained in:
jenz 2024-06-26 23:01:52 +02:00
parent a801d5d3bf
commit db3fe13dc8

View File

@ -507,12 +507,12 @@ public void CheckPopulation()
}
else if (iPlayers < 11)
{
max = iPlayers * 2;
min = iPlayers * 1;
max = RoundToFloor(iPlayers * 1.5);
min = iPlayers;
}
else if (iPlayers < 20)
{
max = iPlayers * 1;
max = iPlayers;
min = RoundToFloor(iPlayers * 0.5);
}
else