мое айкью на уровне плинтуса
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"
|
"minecraft:ancient_debris"
|
||||||
]
|
]
|
||||||
|
|
||||||
global.global.createItemsToHide = [
|
global.createItemsToHide = [
|
||||||
|
"create:zinc_ore",
|
||||||
"create:deepslate_zinc_ore"
|
"create:deepslate_zinc_ore"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,7 @@
|
||||||
// priority: 0
|
// priority: 0
|
||||||
|
|
||||||
const hideCreateStuff = (event) => {
|
const hideCreateStuff = (event) => {
|
||||||
// Hide unused GT ores
|
global.createItemsToHide.forEach(itemToHide => {
|
||||||
GTRegistries.MATERIALS.forEach(material => {
|
event.hide(itemToHide)
|
||||||
global.createItemsToHide.forEach(itemName => {
|
|
||||||
event.hide(itemName)
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
@ -3,6 +3,7 @@
|
||||||
REIEvents.hide('item', event => {
|
REIEvents.hide('item', event => {
|
||||||
hideGTStuff(event)
|
hideGTStuff(event)
|
||||||
hideTFCStuff(event)
|
hideTFCStuff(event)
|
||||||
|
hideCreateStuff(event)
|
||||||
hideMinecraftStuff(event)
|
hideMinecraftStuff(event)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue