Increase starting Luxury amount to match Civ 5 (#12631)

This commit is contained in:
SeventhM 2024-12-14 08:13:30 -08:00 committed by GitHub
parent 5364fee87b
commit 2a0cab7d40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -366,7 +366,7 @@ object LuxuryResourcePlacementLogic {
val averageFertilityDensity =
regions.sumOf { it.totalFertility } / regions.sumOf { it.tiles.size }.toFloat()
for (region in regions) {
var targetLuxuries = 1
var targetLuxuries = 2
if (tileMap.mapParameters.getLegendaryStart())
targetLuxuries++
if (region.totalFertility / region.tiles.size.toFloat() < averageFertilityDensity) {