mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-26 12:33:43 +01:00
Fix crash in progressive mode
This commit is contained in:
parent
dcb479dc44
commit
f9f9988868
3
init.lua
3
init.lua
@ -1614,7 +1614,8 @@ local function fields(player, _f)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local recipes, usages = get_recipes(item, data, player)
|
local recipes, usages = get_recipes(item, data, player)
|
||||||
if not recipes and not usages then return end
|
if not recipes and not usages then return end
|
||||||
|
if data.show_usages and not usages then return end
|
||||||
|
|
||||||
data.query_item = item
|
data.query_item = item
|
||||||
data.recipes = recipes
|
data.recipes = recipes
|
||||||
|
Loading…
Reference in New Issue
Block a user