mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-18 07:10:21 +01:00
Fix get_filtered_items again
This commit is contained in:
parent
cdc8e410b6
commit
a076e10d16
3
init.lua
3
init.lua
@ -259,7 +259,8 @@ local function get_filtered_items(player)
|
|||||||
local usages = usages_cache[item]
|
local usages = usages_cache[item]
|
||||||
|
|
||||||
if recipes and #apply_recipe_filters(recipes, player) > 0 or
|
if recipes and #apply_recipe_filters(recipes, player) > 0 or
|
||||||
(usages and (progressive_mode and item_in_inv(item, data.inv_items)) and
|
(usages and (not progressive_mode and true or
|
||||||
|
item_in_inv(item, data.inv_items)) and
|
||||||
#apply_recipe_filters(usages_cache[item], player) > 0) then
|
#apply_recipe_filters(usages_cache[item], player) > 0) then
|
||||||
c = c + 1
|
c = c + 1
|
||||||
items[c] = item
|
items[c] = item
|
||||||
|
Loading…
Reference in New Issue
Block a user