add a recipe for cooking oil into paraffin

This commit is contained in:
FaceDeer 2019-08-06 22:02:33 -06:00
parent 168654dfe8
commit 1db8158509
2 changed files with 11 additions and 1 deletions

View File

@ -2,3 +2,4 @@ default
dynamic_liquid? dynamic_liquid?
bucket? bucket?
doc? doc?
basic_materials?

View File

@ -200,4 +200,13 @@ if minetest.get_modpath("bucket") then
burntime = 370, -- same as coalblock burntime = 370, -- same as coalblock
replacements = {{"oil:oil_bucket", "bucket:bucket_empty"}}, replacements = {{"oil:oil_bucket", "bucket:bucket_empty"}},
}) })
if minetest.get_modpath("basic_materials") then
minetest.register_craft({
type = "cooking",
output = "basic_materials:paraffin",
recipe = "oil:oil_bucket",
replacements = {{"oil:oil_bucket", "bucket:bucket_empty"}},
})
end
end end