fix beer bread recipe mug replacement

This commit is contained in:
OgelGames 2021-10-31 21:17:57 +11:00
parent af24280324
commit 98e862f2af

View File

@ -119,24 +119,24 @@ if minetest.get_modpath("farming") then
}, },
}) })
end end
if minetest.get_modpath("homedecor_gastronomy") then if minetest.get_modpath("home_workshop_misc") then
minetest.register_craft({ minetest.register_craft({
type = "shapeless", type = "shapeless",
output = 'farming:dough 9', output = 'farming:dough 9',
recipe = {'farming:flour', 'homedecor:beer_mug', 'farming:salt'}, recipe = {'farming:flour', 'home_workshop_misc:beer_mug', 'farming:salt'},
replacements = { replacements = {
{"homedecor:beer_mug", "vessels:drinking_glass"} {"home_workshop_misc:beer_mug", "vessels:drinking_glass"}
} }
}) })
minetest.register_craft({ minetest.register_craft({
type = "shapeless", type = "shapeless",
output = 'farming:dough 11', output = 'farming:dough 11',
recipe = { recipe = {
'farming:flour', 'homedecor:beer_mug', 'farming:salt', 'farming:flour', 'home_workshop_misc:beer_mug', 'farming:salt',
'farming:sugar' 'farming:sugar'
}, },
replacements = { replacements = {
{"homedecor:beer_mug", "vessels:drinking_glass"} {"home_workshop_misc:beer_mug", "vessels:drinking_glass"}
} }
}) })
end end