Skip to content

Commit

Permalink
Exclude jungle tag from valid cherry tree biomes
Browse files Browse the repository at this point in the history
  • Loading branch information
jss2a98aj committed Jan 30, 2024
1 parent 62622a8 commit 0428586
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public void postInit() {

if (ModBlocks.CHERRY_LOG.isEnabled() && ModBlocks.LEAVES.isEnabled()) {
BiomeGenBase[] cherryBiomeArray = BiomeDictionary.getBiomesForType(Type.MOUNTAIN);
cherryBiomeArray = Utils.excludeBiomesFromTypesWithDefaults(cherryBiomeArray, Type.SNOWY, Type.HOT, Type.SANDY, Type.MESA, Type.SPARSE);
cherryBiomeArray = Utils.excludeBiomesFromTypesWithDefaults(cherryBiomeArray, Type.SNOWY, Type.HOT, Type.SANDY, Type.MESA, Type.SPARSE, Type.JUNGLE);
cherryBiomes = Arrays.asList(cherryBiomeArray);
cherryTreeGen = new WorldGenCherryTrees(false);
}
Expand Down

0 comments on commit 0428586

Please sign in to comment.