мое айкью на уровне плинтуса

This commit is contained in:
SpeeeDCraft 2023-10-28 19:18:44 +07:00
parent 327c0da8a3
commit a767b5756e
3 changed files with 5 additions and 6 deletions

View file

@ -22,7 +22,8 @@ global.itemsToHide = [
"minecraft:ancient_debris"
]
global.global.createItemsToHide = [
global.createItemsToHide = [
"create:zinc_ore",
"create:deepslate_zinc_ore"
]

View file

@ -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)
})
}

View file

@ -3,6 +3,7 @@
REIEvents.hide('item', event => {
hideGTStuff(event)
hideTFCStuff(event)
hideCreateStuff(event)
hideMinecraftStuff(event)
})