fix ore recipes again
This commit is contained in:
parent
323d0bf78a
commit
4e90df43ba
5 changed files with 45 additions and 4 deletions
|
|
@ -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 = [
|
||||
|
|
|
|||
10
kubejs/client_scripts/create/rei.js
Normal file
10
kubejs/client_scripts/create/rei.js
Normal 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)
|
||||
})
|
||||
})
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue