From 6de80d792e7af04709b9a309db3ac59a8ed343a2 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Mon, 20 Jan 2025 20:26:09 +0700 Subject: [PATCH] Bump bottom limit of how spread out ore is in large tritanium vein, as well make it appear less often --- .../kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 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 f5474be0f..36f55e046 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt @@ -106,17 +106,17 @@ fun registerPlacedFeatures(context: BootstrapContext) { context.register(PlacedFeatures.CLOUD_TITANIUM, PlacedFeature( ore, listOf( - RarityFilter.onAverageOnceEvery(6), + RarityFilter.onAverageOnceEvery(8), InSquarePlacement.spread(), HeightRangePlacement.of(StandardDeviationHeightProvider(VerticalAnchor.absolute(10), 15.0)), EllipsoidPlacement( - x = ClampedNormalInt.of(0f, 8f, Int.MIN_VALUE, Int.MAX_VALUE), + x = ClampedNormalInt.of(0f, 6f, Int.MIN_VALUE, Int.MAX_VALUE), y = ClampedNormalInt.of(0f, 12f, Int.MIN_VALUE, Int.MAX_VALUE), - z = ClampedNormalInt.of(0f, 8f, Int.MIN_VALUE, Int.MAX_VALUE), + z = ClampedNormalInt.of(0f, 6f, Int.MIN_VALUE, Int.MAX_VALUE), count = ClampedNormalInt.of(100f, 100f, 80, 300), - xLength = ClampedNormalFloat.of(11f, 4f, 4f, 14f), - yLength = ClampedNormalFloat.of(11f, 4f, 4f, 14f), - zLength = ClampedNormalFloat.of(11f, 4f, 4f, 14f), + xLength = ClampedNormalFloat.of(11f, 4f, 6f, 14f), + yLength = ClampedNormalFloat.of(11f, 4f, 6f, 14f), + zLength = ClampedNormalFloat.of(11f, 4f, 6f, 14f), ) ) ))