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:
philipbenr 2016-07-30 17:29:23 -07:00 committed by GitHub
commit 7893936328
3 changed files with 15 additions and 2 deletions

View File

@ -4,3 +4,4 @@ farming
farming_plus?
vessels
flowers?
ethereal?

View File

@ -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({
output = "mtfoods:cookies",

View File

@ -2,8 +2,13 @@
--By: Philipbenr--
--Licence: GPLv3--
local orange_ing = "farming_plus:orange"
if minetest.get_modpath("ethereal") then
orange_ing = "ethereal:orange"
end
ing = {
orange = "farming_plus:orange",
orange = orange_ing,
apple = "default:apple",
meat = "mobs:meat",
bread = "farming:bread",
@ -22,7 +27,7 @@ ing = {
-- Add support for the food mod's ingredient list
if minetest.get_modpath("food") then
ing = {
orange = "farming_plus:orange",
orange = "group:food_orange",
apple = "default:apple",
meat = "group:food_meat",
bread = "farming:bread",