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

Fix missing craft recipe of boston_cream pie #3

Merged
merged 2 commits into from
Jul 31, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions depends.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ farming
farming_plus?
vessels
flowers?
ethereal?
7 changes: 7 additions & 0 deletions desserts.lua
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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