forked from VoxeLibre/VoxeLibre
Fix craftguide not showing written book recipe
This commit is contained in:
parent
899e8f6d30
commit
64fe6f3f80
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue