Temporary partial fix for insane hunger issue where you can only ever replenish 2.5 hearts at a time

This commit is contained in:
2026-03-11 23:41:45 -05:00
parent b6e1952109
commit 3adf57d33a
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ ItemEvents.modification(event => {
event.modify(Object.keys(data), item => {
item.foodProperties = food => {
let dataEntry = data[item.arch$registryName().toString()]
food.hunger(dataEntry.heal * 2)
food.hunger(dataEntry.heal)
for(let effectDef of dataEntry.effects) {
switch(effectDef.type) {