diff --git a/core/src/com/unciv/logic/map/mapgenerator/MapLandmassGenerator.kt b/core/src/com/unciv/logic/map/mapgenerator/MapLandmassGenerator.kt index 7a077c0566..6d947acb59 100644 --- a/core/src/com/unciv/logic/map/mapgenerator/MapLandmassGenerator.kt +++ b/core/src/com/unciv/logic/map/mapgenerator/MapLandmassGenerator.kt @@ -98,6 +98,7 @@ class MapLandmassGenerator(val ruleset: Ruleset, val randomness: MapGenerationRa private fun createArchipelago(tileMap: TileMap) { val elevationSeed = randomness.RNG.nextInt().toDouble() + waterThreshold += 0.25 for (tile in tileMap.values) { val elevation = getRidgedPerlinNoise(tile, elevationSeed) spawnLandOrWater(tile, elevation)