Fix craftguide not showing written book recipe

This commit is contained in:
Wuzzy 2017-02-06 14:29:03 +01:00
parent 899e8f6d30
commit 64fe6f3f80
1 changed files with 2 additions and 4 deletions

View File

@ -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