mr pumpkin

master
runs 2019-10-29 23:48:53 +01:00
parent ee070d8a98
commit bd2c3a1e21
1 changed files with 10 additions and 0 deletions

View File

@ -463,6 +463,11 @@ if minetest.get_modpath("farming") ~= nil and farming.mod == "redo" then
output = "petz:jack_o_lantern",
recipe = {"farming:pumpkin", "petz:beeswax_candle"},
})
minetest.register_craft({
type = "shapeless",
output = "petz:jack_o_lantern",
recipe = {"farming:pumpkin", "default:torch"},
})
end
if minetest.get_modpath("crops") ~= nil then
@ -471,4 +476,9 @@ if minetest.get_modpath("crops") ~= nil then
output = "petz:jack_o_lantern",
recipe = {"crops:pumpkin", "petz:beeswax_candle"},
})
minetest.register_craft({
type = "shapeless",
output = "petz:jack_o_lantern",
recipe = {"crops:pumpkin", "default:torch"},
})
end