diff options
author | Wuzzy <almikes@aol.com> | 2016-08-05 14:25:45 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-08-05 14:25:45 +0200 |
commit | f028f6c8d823fbb3db9f9177fef8586a8f096d45 (patch) | |
tree | 5ddbcf12eaf937447646fab762ba883cd5079c68 /hunger.lua | |
parent | 98309f5a44380f235c701725e21039c3fbc3f768 (diff) |
Add support for MTG shrooms, pizza, FR beans
Diffstat (limited to 'hunger.lua')
-rw-r--r-- | hunger.lua | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -64,6 +64,10 @@ end if minetest.get_modpath("default") ~= nil then overwrite("default:apple", 2) end +if minetest.get_modpath("flowers") ~= nil then + overwrite("flowers:mushroom_brown", 1) + overwrite("flowers:mushroom_red", 1, "", 3) +end if minetest.get_modpath("farming") ~= nil then overwrite("farming:bread", 4) end @@ -316,6 +320,7 @@ if minetest.get_modpath("farming") and farming.mod == "redo" then end overwrite("farming:rhubarb", 1) overwrite("farming:rhubarb_pie", 6) + overwrite("farming:beans", 1) end if minetest.get_modpath("kpgmobs") ~= nil then @@ -364,6 +369,11 @@ if minetest.get_modpath("ferns") ~= nil then overwrite("ferns:horsetail_01", 1) end +if minetest.get_modpath("pizza") ~= nil then + overwrite("pizza:pizza", 30, "", nil, 30) + overwrite("pizza:pizzaslice", 5, "", nil, 5) +end + -- player-action based hunger changes function hbhunger.handle_node_actions(pos, oldnode, player, ext) if not player or not player:is_player() then |