24 lines
618 B
Lua
24 lines
618 B
Lua
|
local function overwrite(name, hunger_change, replace_with_item, poisen, heal)
|
||
|
local tab = minetest.registered_items[name]
|
||
|
if not tab then
|
||
|
return
|
||
|
end
|
||
|
tab.on_use = diet.item_eat(hunger_change, replace_with_item, poisen, heal)
|
||
|
end
|
||
|
|
||
|
if minetest.get_modpath("farming") and farming.mod == "redo" then
|
||
|
-- Strawberries fix
|
||
|
overwrite("ethereal:strawberry", 1)
|
||
|
overwrite("farming_plus:strawberry_item", 1)
|
||
|
|
||
|
-- Banana
|
||
|
overwrite("ethereal:banana", 2)
|
||
|
overwrite("ethereal:orange", 4)
|
||
|
end
|
||
|
|
||
|
if minetest.get_modpath("mtfoods") then
|
||
|
overwrite("mtfoods:boston_cream", 5)
|
||
|
end
|
||
|
|
||
|
minetest.log("action", "[nalc_diet] loaded.")
|