neuralgia/kubejs/client_scripts/mods/create.js
2023-12-29 19:37:56 +07:00

12 lines
No EOL
244 B
JavaScript

// priority: 0
const hideCreateStuff = (event) => {
global.CREATE_DISABLED_ITEMS.forEach(item => {
event.hide(item)
})
}
const hideCreateFluids = (event) => {
event.hide('create:chocolate')
event.hide('create:honey')
}