forked from mtcontrib/mtfoods
Merge pull request #3 from sys4-fr/master
Fix missing craft recipe of boston_cream pie Well, why not. I should finish up this mod... Quite shabby. I should also make some blender models too...
This commit is contained in:
commit
7893936328
@ -4,3 +4,4 @@ farming
|
|||||||
farming_plus?
|
farming_plus?
|
||||||
vessels
|
vessels
|
||||||
flowers?
|
flowers?
|
||||||
|
ethereal?
|
||||||
|
@ -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",
|
||||||
|
9
init.lua
9
init.lua
@ -2,8 +2,13 @@
|
|||||||
--By: Philipbenr--
|
--By: Philipbenr--
|
||||||
--Licence: GPLv3--
|
--Licence: GPLv3--
|
||||||
|
|
||||||
|
local orange_ing = "farming_plus:orange"
|
||||||
|
if minetest.get_modpath("ethereal") then
|
||||||
|
orange_ing = "ethereal:orange"
|
||||||
|
end
|
||||||
|
|
||||||
ing = {
|
ing = {
|
||||||
orange = "farming_plus:orange",
|
orange = orange_ing,
|
||||||
apple = "default:apple",
|
apple = "default:apple",
|
||||||
meat = "mobs:meat",
|
meat = "mobs:meat",
|
||||||
bread = "farming:bread",
|
bread = "farming:bread",
|
||||||
@ -22,7 +27,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