This commit is contained in:
bell07 2018-05-22 20:30:31 +00:00 committed by GitHub
commit b02d181d97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 2 deletions

View File

@ -97,6 +97,7 @@ minetest.register_craftitem("mtfoods:strawberry_shortcake", {
--})
-- Crafting --
local ing = mtfoods.ingredients
minetest.register_craft({
output = "mtfoods:dandelion_milk 2",

View File

@ -1,3 +1,5 @@
local ing = mtfoods.ingredients
-- Flute Glass --
minetest.register_craftitem("mtfoods:glass_flute", {
description = "Glass Flute",

View File

@ -1,6 +1,7 @@
-- Foods --
--MLT--
local ing = mtfoods.ingredients
minetest.register_craftitem( "mtfoods:mlt_burger", {
description = "MLT (Mutton, Lettuce, Tomato)",

View File

@ -1,13 +1,14 @@
--MTFoods--
--By: Philipbenr--
--Licence: GPLv3--
mtfoods = {}
local orange_ing = "farming_plus:orange"
if minetest.get_modpath("ethereal") then
orange_ing = "ethereal:orange"
end
ing = {
mtfoods.ingredients = {
orange = orange_ing,
apple = "default:apple",
meat = "mobs:meat",
@ -26,7 +27,7 @@ ing = {
-- Add support for the food mod's ingredient list
if minetest.get_modpath("food") then
ing = {
mtfoods.ingredients = {
orange = "group:food_orange",
apple = "default:apple",
meat = "group:food_meat",