386387388389390391392393
private void loadBiomes(Map<String, AnyTag> data) { if (data == null) { biomes = CorruptLayer.INSTANCE; } else { biomes = new BiomeLayer(extractBiomeData(data)); } }
635636637638639640641642643644645
return loadedLayer == world.currentLayer(); } public String biomeAt(int blockX, int blockZ) { if (biomes instanceof BiomeLayer) { BiomeLayer biomeLayer = (BiomeLayer) biomes; return biomeLayer.biomeAt(blockX, blockZ); } else { return "unknown"; } }