i have tried multiple different things using this page from the wiki
https://kubejs.com/wiki/tutorials/item-modification
and none of them have worked. i gave up and have tried to just make the food inedible, and even that won't work. any ideas? thank you
i've tried
event.modify('spelunkery:portabella', item => {
item.foodProperties = null
})
})```
and
```ItemEvents.modification(event => {
event.modify('spelunkery:portabella', item => {
item.setFoodPropertiesKJS(null)
})
})```