From 3bb5ab67d61abf75ea37f93f263906d8ad8f9b88 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 14 Feb 2017 13:06:25 +0100 Subject: [PATCH] Fix code typo in mcl_craftguide --- mods/mcl_craftguide/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/mcl_craftguide/init.lua b/mods/mcl_craftguide/init.lua index ca8250af7..3fb9c0ade 100644 --- a/mods/mcl_craftguide/init.lua +++ b/mods/mcl_craftguide/init.lua @@ -302,7 +302,7 @@ function craftguide:get_init_items() local items_list, counter = {}, 0 for name, def in pairs(reg_items) do local is_fuel = get_fueltime(name) > 0 - if (not def.groups.not_in_craft_guide or def.groups.not_in_raft_guide == 0) + if (not def.groups.not_in_craft_guide or def.groups.not_in_craft_guide == 0) and (get_recipe(name).items or is_fuel) and def.description and def.description ~= "" then counter = counter + 1