mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-26 20:43:42 +01:00
Finally fix cooking recipes
This commit is contained in:
parent
0b37b2bb2f
commit
d57cb7865b
6
init.lua
6
init.lua
@ -695,7 +695,7 @@ local function cache_recipes(item)
|
|||||||
end
|
end
|
||||||
|
|
||||||
if cook_cache[item] then
|
if cook_cache[item] then
|
||||||
recipes_cache[item] = table_merge(recipes_cache[item] or {}, {cook_cache[item]})
|
recipes_cache[item] = table_merge(recipes_cache[item] or {}, cook_cache[item])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1470,7 +1470,9 @@ core.register_craft = function(def)
|
|||||||
elseif def.type == "cooking" then
|
elseif def.type == "cooking" then
|
||||||
def.cooktime = def.cooktime or 1
|
def.cooktime = def.cooktime or 1
|
||||||
def.items = {def.recipe}
|
def.items = {def.recipe}
|
||||||
cook_cache[def.recipe] = def
|
def.recipe = nil
|
||||||
|
cook_cache[name] = cook_cache[name] or {}
|
||||||
|
insert(cook_cache[name], def)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user