мое айкью на уровне плинтуса
This commit is contained in:
parent
327c0da8a3
commit
a767b5756e
3 changed files with 5 additions and 6 deletions
|
|
@ -22,7 +22,8 @@ global.itemsToHide = [
|
|||
"minecraft:ancient_debris"
|
||||
]
|
||||
|
||||
global.global.createItemsToHide = [
|
||||
global.createItemsToHide = [
|
||||
"create:zinc_ore",
|
||||
"create:deepslate_zinc_ore"
|
||||
]
|
||||
|
||||
|
|
|
|||
|
|
@ -1,10 +1,7 @@
|
|||
// priority: 0
|
||||
|
||||
const hideCreateStuff = (event) => {
|
||||
// Hide unused GT ores
|
||||
GTRegistries.MATERIALS.forEach(material => {
|
||||
global.createItemsToHide.forEach(itemName => {
|
||||
event.hide(itemName)
|
||||
})
|
||||
global.createItemsToHide.forEach(itemToHide => {
|
||||
event.hide(itemToHide)
|
||||
})
|
||||
}
|
||||
|
|
@ -3,6 +3,7 @@
|
|||
REIEvents.hide('item', event => {
|
||||
hideGTStuff(event)
|
||||
hideTFCStuff(event)
|
||||
hideCreateStuff(event)
|
||||
hideMinecraftStuff(event)
|
||||
})
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue