mirror of
https://github.com/rubenwardy/food.git
synced 2024-11-15 14:50:35 +01:00
Merge branch 'master' of https://github.com/rubenwardy/food
To correct the problem with buckets being lost while creating butter from milk buckets.
This commit is contained in:
commit
fe801df53e
|
@ -12,6 +12,7 @@ jkanimals?
|
|||
jkfarming?
|
||||
my_mobs?
|
||||
mobs?
|
||||
mobs_animal?
|
||||
mobfcooking?
|
||||
mtfoods?
|
||||
plantlib?
|
||||
|
|
|
@ -8,9 +8,8 @@
|
|||
|
||||
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||
local S = 0
|
||||
if rawget(_G, "intllib") then
|
||||
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||
S = intllib.Getter(minetest.get_current_modname())
|
||||
if minetest.get_modpath("intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function ( s ) return s end
|
||||
end
|
||||
|
|
|
@ -13,9 +13,8 @@ dofile(minetest.get_modpath("food_basic").."/ingredients.lua")
|
|||
|
||||
-- Boilerplate to support localized strings if intllib mod is installed.
|
||||
local S = 0
|
||||
if rawget(_G, "intllib") then
|
||||
dofile(minetest.get_modpath("intllib").."/intllib.lua")
|
||||
S = intllib.Getter(minetest.get_current_modname())
|
||||
if minetest.get_modpath("intllib") then
|
||||
S = intllib.Getter()
|
||||
else
|
||||
S = function ( s ) return s end
|
||||
end
|
||||
|
|
|
@ -18,7 +18,7 @@ food.support("cactus", "default:cactus")
|
|||
food.support("apple", "default:apple")
|
||||
food.support("orange", {
|
||||
"farming_plus:orange_item",
|
||||
"ethereal:orange"
|
||||
"ethereal:orange",
|
||||
})
|
||||
food.disable_if("ethereal", "orange")
|
||||
|
||||
|
@ -84,5 +84,9 @@ else
|
|||
end
|
||||
|
||||
if minetest.get_modpath("mobs") and mobs.mod == "redo" then
|
||||
food.support("chicken", "mobs:chicken_cooked")
|
||||
if minetest.get_modpath("mobs_animal") then
|
||||
food.support("chicken", "mobs:chicken_cooked")
|
||||
else
|
||||
food.support("chicken", "mobs:meat")
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user