diff --git a/src/Services/CityMap.cs b/src/Services/CityMap.cs index 8554230..741001e 100644 --- a/src/Services/CityMap.cs +++ b/src/Services/CityMap.cs @@ -8,9 +8,9 @@ public class CityMap public House[] Houses; private const int ComfortablePeopleAmountInHouse = 5; - private const int HousesInGroup = 4; - private const int GroupsInRow = 4; // |..|..|..|..| |..|..|..|..| |..|..|..|..| |..|..|..|..| - + private const int HousesInGroup = 8; + private const int GroupsInRow = 2; // |..|..|..|..|..|..|..|..| |..|..|..|..|..|..|..|..| + public const int HouseAmount = Game.PeopleCount / ComfortablePeopleAmountInHouse; public CityMap()