diff options
author | Wuzzy <Wuzzy2@mail.ru> | 2018-05-29 19:08:03 +0200 |
---|---|---|
committer | Wuzzy <Wuzzy2@mail.ru> | 2018-05-29 19:08:03 +0200 |
commit | 2b23a887cf75e9c5f936e88b4092433590d220a9 (patch) | |
tree | 46bdc3e5e90ea80808406116659436a3b7cfe711 | |
parent | 2ecd0543a950dd741621962682b350627840a717 (diff) |
Hide recipes for items with not_in_craft_guide=1
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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_creative_inventory == 1) and + if (not (def.groups.not_in_craft_guide == 1 or def.groups.not_in_creative_inventory == 1)) and (get_recipe(name).items or is_fuel) and def.description and def.description ~= "" then |