diff options
author | mgl <mgl4096@gmail.com> | 2014-12-04 18:12:13 +0100 |
---|---|---|
committer | mgl <mgl4096@gmail.com> | 2015-02-16 15:11:34 +0100 |
commit | decc6e720e26522cb19636e4da856c38694e4bf7 (patch) | |
tree | 270ba1d5b8358627d7df46b87f891613c25d352f | |
parent | 587e263aa9baa68e850fb7b827e166f7d0fcf786 (diff) |
Added plantlife_modpack/mushroom potions
-rw-r--r-- | hunger.lua | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -164,6 +164,11 @@ end if minetest.get_modpath("mushroom") ~= nil then overwrite("mushroom:brown", 1) overwrite("mushroom:red", 1, "", 3) + -- mushroom potions: red = strong poison, brown = light restorative + if minetest.get_modpath("vessels") then + overwrite("mushroom:brown_essence", 1, "vessels:glass_bottle", nil, 4) + overwrite("mushroom:poison", 1, "vessels:glass_bottle", 10) + end end if minetest.get_modpath("docfarming") ~= nil then |