21 lines
1.1 KiB
JavaScript
21 lines
1.1 KiB
JavaScript
// priority: 0
|
||
|
||
const hideMinecraftStuff = (event) => {
|
||
global.MINECRAFT_DISABLED_ITEMS.forEach(item => {
|
||
event.hide(item)
|
||
})
|
||
}
|
||
|
||
const registerMinecraftCategories = (event) => {
|
||
event.remove('minecraft:plugins/campfire')
|
||
event.remove('minecraft:plugins/blasting')
|
||
event.remove('minecraft:plugins/smoking')
|
||
event.remove('minecraft:plugins/brewing')
|
||
event.remove('minecraft:plugins/composting') // TODO: Сделать с вариантами TFC
|
||
event.remove('minecraft:plugins/stripping') // TODO: Сделать с вариантами TFC
|
||
event.remove('minecraft:plugins/pathing') // TODO: Сделать с вариантами TFC
|
||
event.remove('minecraft:plugins/waxing') // TODO: Сделать с вариантами TFC
|
||
event.remove('minecraft:plugins/wax_scraping') // TODO: Сделать с вариантами TFC
|
||
event.remove('minecraft:plugins/oxidizing') // TODO: Сделать с вариантами TFC
|
||
event.remove('minecraft:plugins/oxidation_scraping') // TODO: Сделать с вариантами TFC
|
||
}
|