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 026b4f1e7..14c14e93c 100644 --- a/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt +++ b/src/data/kotlin/ru/dbotthepony/mc/otm/datagen/WorldGen.kt @@ -71,7 +71,7 @@ fun registerPlacedFeatures(context: BootstrapContext) { context.register(PlacedFeatures.NORMAL_TRITANIUM, PlacedFeature( ore, listOf( - CountPlacement.of(6), + CountPlacement.of(UniformInt.of(2, 6)), InSquarePlacement.spread(), HeightRangePlacement.of(StandardDeviationHeightProvider(VerticalAnchor.absolute(10), 15.0)) ) @@ -80,7 +80,7 @@ fun registerPlacedFeatures(context: BootstrapContext) { context.register(PlacedFeatures.DEEP_TRITANIUM, PlacedFeature( ore, listOf( - CountPlacement.of(8), + CountPlacement.of(UniformInt.of(4, 8)), InSquarePlacement.spread(), HeightRangePlacement.of(VeryBiasedToBottomHeight.of(VerticalAnchor.aboveBottom(4), VerticalAnchor.absolute(0), 16)) )