can cook asteroid cobble into asteroid stone

This commit is contained in:
tenplus1 2021-04-20 19:22:36 +01:00
parent f7bbd53ef0
commit 6cb808d920

View File

@ -15,6 +15,12 @@ if otherworlds.settings.crafting.enable then
recipe = {{"asteroid:gravel"}}
})
minetest.register_craft({
type = "cooking",
output = "asteroid:stone",
recipe = "asteroid:cobble"
})
minetest.register_craft({
output = "asteroid:redcobble",
recipe = {{"asteroid:redstone"}}
@ -29,4 +35,10 @@ if otherworlds.settings.crafting.enable then
output = "asteroid:reddust",
recipe = {{"asteroid:redgravel"}}
})
minetest.register_craft({
type = "cooking",
output = "asteroid:redstone",
recipe = "asteroid:redcobble"
})
end