mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-14 22:50:27 +01:00
add a recipe for cooking oil into paraffin
This commit is contained in:
parent
168654dfe8
commit
1db8158509
|
@ -2,3 +2,4 @@ default
|
||||||
dynamic_liquid?
|
dynamic_liquid?
|
||||||
bucket?
|
bucket?
|
||||||
doc?
|
doc?
|
||||||
|
basic_materials?
|
|
@ -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
|
Loading…
Reference in New Issue
Block a user