last edit for now

This commit is contained in:
2024-06-26 23:01:52 +02:00
parent a801d5d3bf
commit db3fe13dc8
+3 -3
View File
@@ -507,12 +507,12 @@ public void CheckPopulation()
} }
else if (iPlayers < 11) else if (iPlayers < 11)
{ {
max = iPlayers * 2; max = RoundToFloor(iPlayers * 1.5);
min = iPlayers * 1; min = iPlayers;
} }
else if (iPlayers < 20) else if (iPlayers < 20)
{ {
max = iPlayers * 1; max = iPlayers;
min = RoundToFloor(iPlayers * 0.5); min = RoundToFloor(iPlayers * 0.5);
} }
else else