From 64fe6f3f806ebfe6a441df4556c20afabc2e9133 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 6 Feb 2017 14:29:03 +0100 Subject: [PATCH] Fix craftguide not showing written book recipe --- mods/mcl_craftguide/init.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mods/mcl_craftguide/init.lua b/mods/mcl_craftguide/init.lua index 9c10c418b..01e120cec 100644 --- a/mods/mcl_craftguide/init.lua +++ b/mods/mcl_craftguide/init.lua @@ -300,10 +300,8 @@ 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_creative_inventory == 1) and - (get_recipe(name).items or is_fuel) and - def.description and def.description ~= "" then - + if (get_recipe(name).items or is_fuel) + and def.description and def.description ~= "" then counter = counter + 1 items_list[counter] = name end