11 lines
No EOL
296 B
JavaScript
11 lines
No EOL
296 B
JavaScript
//priority 20
|
|
console.log('Initlizating Recipe Removal.js!')
|
|
const removerecipebyid = [
|
|
'mekanism:atomic_disassembler'
|
|
]
|
|
ServerEvents.recipes(craftlin => {
|
|
removerecipebyid.forEach((recipe) => {
|
|
craftlin.remove({ id: recipe })
|
|
})
|
|
})
|
|
console.log('Recipe Removal.js is loaded!') |