Added Smelting recipe for making raw_latex in mineclone2

This commit is contained in:
James David Clarke 2023-12-22 05:15:32 +00:00
parent 3ed2d96eb5
commit e04bafce83
No known key found for this signature in database
GPG Key ID: 9F5ECFD0E20F1C4C
1 changed files with 8 additions and 0 deletions

View File

@ -207,3 +207,11 @@ minetest.register_craft({
type = "cooking",
recipe = "technic:rubber_goo",
})
if minetest.get_modpath("mcl_core") then
minetest.register_craft({
output = "technic:raw_latex",
type = "cooking",
recipe = "mcl_mobitems:slimeball",
})
end