[Change] Removed biome logging to from non-verbose logs (#66)

This commit is contained in:
Frank 2023-02-12 11:51:19 +01:00
parent f098ba2127
commit a0472081e1
2 changed files with 7 additions and 2 deletions

View file

@ -2,6 +2,7 @@ package org.betterx.bclib.api.v2.generator;
import org.betterx.bclib.BCLib; import org.betterx.bclib.BCLib;
import org.betterx.bclib.api.v2.levelgen.LevelGenUtil; import org.betterx.bclib.api.v2.levelgen.LevelGenUtil;
import org.betterx.bclib.config.Configs;
import org.betterx.bclib.interfaces.NoiseGeneratorSettingsProvider; import org.betterx.bclib.interfaces.NoiseGeneratorSettingsProvider;
import org.betterx.bclib.mixin.common.ChunkGeneratorAccessor; import org.betterx.bclib.mixin.common.ChunkGeneratorAccessor;
import org.betterx.worlds.together.WorldsTogether; import org.betterx.worlds.together.WorldsTogether;
@ -84,7 +85,9 @@ public class BCLChunkGenerator extends NoiseBasedChunkGenerator implements Resto
} }
if (WorldsTogether.RUNS_TERRABLENDER) { if (WorldsTogether.RUNS_TERRABLENDER) {
BCLib.LOGGER.info("Make sure features are loaded from terrablender" + biomeSource); if ( Configs.MAIN_CONFIG.verboseLogging()) {
BCLib.LOGGER.info("Make sure features are loaded from terrablender" + biomeSource);
}
//terrablender is invalidating the feature initialization //terrablender is invalidating the feature initialization
//we redo it at this point, otherwise we will get blank biomes //we redo it at this point, otherwise we will get blank biomes

View file

@ -191,7 +191,9 @@ public class BCLibEndBiomeSource extends BCLBiomeSource implements BiomeSourceWi
|| TheEndBiomesHelper.canGenerateAsSmallIslandsBiome(key)) { || TheEndBiomesHelper.canGenerateAsSmallIslandsBiome(key)) {
endVoidBiomePicker.addBiome(bclBiome); endVoidBiomePicker.addBiome(bclBiome);
} else { } else {
BCLib.LOGGER.info("Found End Biome " + biomeStr + " that was not registers with fabric or bclib. Assuming end-land Biome..."); if ( Configs.MAIN_CONFIG.verboseLogging()) {
BCLib.LOGGER.info("Found End Biome " + biomeStr + " that was not registers with fabric or bclib. Assuming end-land Biome...");
}
endLandBiomePicker.addBiome(bclBiome); endLandBiomePicker.addBiome(bclBiome);
} }
} }