update {eatable} function

This commit is contained in:
tenplus1 2024-07-27 18:27:41 +01:00
parent 9de3d434c8
commit 71adf29ddd

View File

@ -106,17 +106,17 @@ function ethereal.add_eatable(item, hp)
if def then
local grps = def.groups or {}
local groups = table.copy(def.groups) or {}
local txt = " (" ; if hp > 0 then txt = txt .. "+" end
txt = txt .. hp .. " HP)"
grps.eatable = hp ; grps.flammable = 2
groups.eatable = hp ; groups.flammable = 2
if mod_tt_base == nil then
def.description = def.description .. txt
end
minetest.override_item(item, {description = def.description, groups = grps})
minetest.override_item(item, {description = def.description, groups = groups})
end
end