From 1fc2ba6879b5c8a30936758f75df2863fad0a909 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 5 Jan 2020 21:49:41 +0100 Subject: [PATCH] Craftguide: Show recipes hidden in creative inv. --- mods/HELP/mcl_craftguide/init.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mods/HELP/mcl_craftguide/init.lua b/mods/HELP/mcl_craftguide/init.lua index fab6aa531..159bc745a 100644 --- a/mods/HELP/mcl_craftguide/init.lua +++ b/mods/HELP/mcl_craftguide/init.lua @@ -865,8 +865,7 @@ local function get_init_items() local c = 0 for name, def in pairs(reg_items) do local is_fuel = cache_fuel(name) - if not (def.groups.not_in_craft_guide == 1 or - def.groups.not_in_creative_inventory == 1) and + if not (def.groups.not_in_craft_guide == 1) and def.description and def.description ~= "" and (cache_recipes(name) or is_fuel) then c = c + 1