From 53da2389344ff4c02df28a57a32f036d8139a650 Mon Sep 17 00:00:00 2001 From: thedarkcolour <30441001+thedarkcolour@users.noreply.github.com> Date: Mon, 22 Jan 2024 13:09:43 -0800 Subject: [PATCH] Fix frozen oceans generating icebergs in the void world type --- .../exdeorum/voidworld/VoidChunkGenerator.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/thedarkcolour/exdeorum/voidworld/VoidChunkGenerator.java b/src/main/java/thedarkcolour/exdeorum/voidworld/VoidChunkGenerator.java index 1d726470..296bcaac 100644 --- a/src/main/java/thedarkcolour/exdeorum/voidworld/VoidChunkGenerator.java +++ b/src/main/java/thedarkcolour/exdeorum/voidworld/VoidChunkGenerator.java @@ -140,6 +140,13 @@ public class VoidChunkGenerator extends NoiseBasedChunkGenerator { } } + @Override + public void applyBiomeDecoration(WorldGenLevel pLevel, ChunkAccess pChunk, StructureManager pStructureManager) { + if (this.generateNormal) { + super.applyBiomeDecoration(pLevel, pChunk, pStructureManager); + } + } + @Override public void createReferences(WorldGenLevel level, StructureManager pStructureManager, ChunkAccess pChunk) { if (this.generateNormal || hasStructures(level.registryAccess())) {