mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-05 09:40:22 +01:00
Fix get_filtered_items()
This commit is contained in:
parent
4560457504
commit
b3bba5c2ff
15
init.lua
15
init.lua
|
@ -180,17 +180,12 @@ local function get_filtered_items(player)
|
|||
for i = 1, #init_items do
|
||||
local item = init_items[i]
|
||||
local recipes = recipes_cache[item]
|
||||
local fuel = fuel_cache[item]
|
||||
|
||||
if not recipes and fuel_cache[item] then
|
||||
recipes = table_merge(get_item_usages(item), recipes)
|
||||
end
|
||||
|
||||
if recipes then
|
||||
recipes = apply_recipe_filters(recipes, player)
|
||||
if #recipes > 0 then
|
||||
c = c + 1
|
||||
items[c] = item
|
||||
end
|
||||
if recipes and #apply_recipe_filters(recipes, player) > 0 or
|
||||
fuel and #apply_recipe_filters(get_item_usages(item), player) > 0 then
|
||||
c = c + 1
|
||||
items[c] = item
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user