12 lines
No EOL
244 B
JavaScript
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')
|
|
} |