forked from mtcontrib/mtfoods
Fix missing craft recipe of boston_cream pie
Change orange ingredient as group:food_orange (needed for ethereal:orange)
This commit is contained in:
parent
b4adaa47ab
commit
01e337fbb3
@ -221,6 +221,13 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mtfoods:boston_cream",
|
||||||
|
recipe = {
|
||||||
|
{'mtfoods:cream', 'mtfoods:chocolate', 'mtfoods:cream'},
|
||||||
|
{'', 'mtfoods:pie_crust', ''},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mtfoods:cookies",
|
output = "mtfoods:cookies",
|
||||||
|
2
init.lua
2
init.lua
@ -22,7 +22,7 @@ ing = {
|
|||||||
-- Add support for the food mod's ingredient list
|
-- Add support for the food mod's ingredient list
|
||||||
if minetest.get_modpath("food") then
|
if minetest.get_modpath("food") then
|
||||||
ing = {
|
ing = {
|
||||||
orange = "farming_plus:orange",
|
orange = "group:food_orange",
|
||||||
apple = "default:apple",
|
apple = "default:apple",
|
||||||
meat = "group:food_meat",
|
meat = "group:food_meat",
|
||||||
bread = "farming:bread",
|
bread = "farming:bread",
|
||||||
|
Loading…
Reference in New Issue
Block a user