From ed04a8c4d2b9d7ade1291007774cd7afdd7e7d39 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Sun, 9 Mar 2025 15:39:20 +0700 Subject: [PATCH] Drastically reduce tritanium clusters generated --- src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt index 50f4f0935..cdb54e788 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt @@ -100,7 +100,7 @@ fun registerPlacedFeatures(context: BootstrapContext) { context.register(PlacedFeatures.NORMAL_TRITANIUM, PlacedFeature( ore, listOf( - CountPlacement.of(UniformInt.of(2, 6)), + CountPlacement.of(UniformInt.of(1, 3)), InSquarePlacement.spread(), HeightRangePlacement.of(StandardDeviationHeightProvider(VerticalAnchor.absolute(10), 15.0)) ) @@ -109,7 +109,7 @@ fun registerPlacedFeatures(context: BootstrapContext) { context.register(PlacedFeatures.DEEP_TRITANIUM, PlacedFeature( ore, listOf( - CountPlacement.of(UniformInt.of(4, 8)), + CountPlacement.of(UniformInt.of(3, 5)), InSquarePlacement.spread(), HeightRangePlacement.of(VeryBiasedToBottomHeight.of(VerticalAnchor.aboveBottom(4), VerticalAnchor.absolute(0), 16)) )