umm/mods/overrides/kubejs/startup_scripts/mining_dim_layers.js
2024-03-20 20:29:50 +01:00

7 lines
606 B
JavaScript

GTCEuStartupEvents.registry('gtceu:world_gen_layer', event => {
GTWorldGenLayers.STONE.levels = [new ResourceLocation("minecraft", "overworld"), new ResourceLocation("allthemodium", "mining")];
GTWorldGenLayers.DEEPSLATE.levels = [new ResourceLocation("minecraft", "overworld"), new ResourceLocation("allthemodium", "mining")];
GTWorldGenLayers.NETHERRACK.levels = [new ResourceLocation("minecraft", "the_nether"), new ResourceLocation("allthemodium", "mining")];
GTWorldGenLayers.ENDSTONE.levels = [new ResourceLocation("minecraft", "the_end"), new ResourceLocation("allthemodium", "mining")];
})