12 lines
No EOL
285 B
JavaScript
12 lines
No EOL
285 B
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
function registerFirmalifeItemModifications(event) {
|
|
|
|
event.modify('firmalife:spoon', item => {
|
|
item.setCraftingRemainder('firmalife:spoon')
|
|
})
|
|
event.modify('firmalife:mixing_bowl', item => {
|
|
item.setCraftingRemainder('firmalife:mixing_bowl')
|
|
})
|
|
} |