From 20b3fe78ba2e86e8422aae9dd31ac47cc716c0c4 Mon Sep 17 00:00:00 2001
From: DBotThePony <dbotthepony@yandex.ru>
Date: Sun, 19 Jan 2025 15:12:42 +0700
Subject: [PATCH] Further reduce amount of small tritanium patches

---
 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 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<PlacedFeature>) {
 	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<PlacedFeature>) {
 	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))
 		)