From d06d9bf9d9bb1884c676ea3f7e74e7842f4e68cd Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Mon, 26 Jan 2026 00:32:33 +0000 Subject: [PATCH] Remove base world gen, not needed since a world will be supplied in my usecase --- src/main/java/net/jstom/Main.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/net/jstom/Main.java b/src/main/java/net/jstom/Main.java index 80653ba..8bfb102 100644 --- a/src/main/java/net/jstom/Main.java +++ b/src/main/java/net/jstom/Main.java @@ -29,9 +29,6 @@ public class Main { // Create the instance InstanceContainer instanceContainer = instanceManager.createInstanceContainer(); // Set the ChunkGenerator - instanceContainer.setGenerator(unit -> - unit.modifier().fillHeight(0, 40, Block.GRASS_BLOCK) - ); instanceContainer.setChunkSupplier(LightingChunk::new); // Add an event callback to specify the spawning instance (and the spawn position)