Updated Enderscape integration

This commit is contained in:
paulevsGitch 2021-12-21 18:12:31 +03:00
parent c2ab690d37
commit 6840225f1d

View file

@ -36,7 +36,9 @@ public class EnderscapeIntegration extends ModIntegration {
BiomeAPI.registerEndBiomeModification((biomeID, biome) -> { BiomeAPI.registerEndBiomeModification((biomeID, biome) -> {
if (!biomeID.getNamespace().equals("enderscape")) { if (!biomeID.getNamespace().equals("enderscape")) {
BiomeAPI.addBiomeFeatures(biome, scatteredShadowQuartzOre, voidNebuliteOre, nebuliteOre); BiomeAPI.addBiomeFeature(biome, scatteredShadowQuartzOre);
BiomeAPI.addBiomeFeature(biome, voidNebuliteOre);
BiomeAPI.addBiomeFeature(biome, nebuliteOre);
} }
}); });