Skip to content
This repository has been archived by the owner on May 24, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3 from sys4-fr/master
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
Philipbenr committed Jul 31, 2016
2 parents b4adaa4 + 79bf783 commit 7893936
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions depends.txt
Expand Up @@ -4,3 +4,4 @@ farming
farming_plus?
vessels
flowers?
ethereal?
7 changes: 7 additions & 0 deletions desserts.lua
Expand Up @@ -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",
Expand Down
9 changes: 7 additions & 2 deletions init.lua
Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 7893936

Please sign in to comment.