[Fix] End Biomes without type are ignored (quiqueck/BetterEnd#29)

This commit is contained in:
Frank 2022-07-03 21:56:54 +02:00
parent 7d3ef6c756
commit 1186e962f6

View file

@ -159,6 +159,9 @@ public class BCLibEndBiomeSource extends BCLBiomeSource implements BiomeSourceWi
} else if (BiomeAPI.wasRegisteredAs(biomeID, BiomeAPI.BiomeType.END_VOID)
|| TheEndBiomesHelper.canGenerateAsSmallIslandsBiome(key)) {
endVoidBiomePicker.addBiome(bclBiome);
} else {
BCLib.LOGGER.info("Found End Biome " + biomeStr + " that was not registers with fabric or bclib. Assuming end-land Biome...");
endLandBiomePicker.addBiome(bclBiome);
}
}
}