fix ore recipes again

This commit is contained in:
SpeeeDCraft 2023-10-27 20:08:04 +07:00
parent 323d0bf78a
commit 4e90df43ba
5 changed files with 45 additions and 4 deletions

View file

@ -18,7 +18,12 @@ global.itemsToHide = [
"minecraft:diamond_ore",
"minecraft:deepslate_diamond_ore",
"minecraft:nether_gold_ore",
"minecraft:nether_quartz_ore"
"minecraft:nether_quartz_ore",
"minecraft:ancient_debris"
]
global.global.createItemsToHide = [
"create:deepslate_zinc_ore"
]
global.stoneTypesToHide = [

View file

@ -0,0 +1,10 @@
// priority: 0
const hideCreateStuff = (event) => {
// Hide unused GT ores
GTRegistries.MATERIALS.forEach(material => {
global.createItemsToHide.forEach(itemName => {
event.hide(itemName)
})
})
}