From d044ebfb26b10c0e4209f980cef7dd514a843fd8 Mon Sep 17 00:00:00 2001 From: Mrbysco Date: Thu, 31 Oct 2024 20:23:26 +0100 Subject: [PATCH] Update ModFeatures.java --- .../java/net/chococraft/common/world/worldgen/ModFeatures.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/net/chococraft/common/world/worldgen/ModFeatures.java b/common/src/main/java/net/chococraft/common/world/worldgen/ModFeatures.java index 16b90d9..bb0ea4d 100644 --- a/common/src/main/java/net/chococraft/common/world/worldgen/ModFeatures.java +++ b/common/src/main/java/net/chococraft/common/world/worldgen/ModFeatures.java @@ -53,6 +53,6 @@ public static void placedBootstrap(BootstrapContext context) { List.of( CountPlacement.of(UniformInt.of(0, 5)), RarityFilter.onAverageOnceEvery(32), - InSquarePlacement.spread(), PlacementUtils.HEIGHTMAP, BiomeFilter.biome())); + InSquarePlacement.spread(), PlacementUtils.HEIGHTMAP_WORLD_SURFACE, BiomeFilter.biome())); } }