From a83117b8a95a69730996e75e6acee9fa2fe0fff1 Mon Sep 17 00:00:00 2001 From: Frank Date: Sat, 11 Jun 2022 20:09:45 +0200 Subject: [PATCH] Clean up Biomeset --- .../bclib/api/v2/levelgen/biomes/InternalBiomeAPI.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/betterx/bclib/api/v2/levelgen/biomes/InternalBiomeAPI.java b/src/main/java/org/betterx/bclib/api/v2/levelgen/biomes/InternalBiomeAPI.java index 851fc100..56c969dc 100644 --- a/src/main/java/org/betterx/bclib/api/v2/levelgen/biomes/InternalBiomeAPI.java +++ b/src/main/java/org/betterx/bclib/api/v2/levelgen/biomes/InternalBiomeAPI.java @@ -98,7 +98,7 @@ public class InternalBiomeAPI { * This method gets called before a world is loaded/created to flush cashes we build. */ public static void prepareNewLevel() { - + BIOMES_TO_SORT.clear(); } /** @@ -254,7 +254,7 @@ public class InternalBiomeAPI { .register((rawId, id, biome) -> { BCLBiome b = BiomeAPI.getBiome(id); if (!"minecraft".equals(id.getNamespace()) && (b == null || b == BiomeAPI.EMPTY_BIOME)) { - //BCLib.LOGGER.info(" #### " + rawId + ", " + biome + ", " + id); + BCLib.LOGGER.info(" #### " + rawId + ", " + biome + ", " + id); BIOMES_TO_SORT.add(id); } });