diff options
author | JP Guerrero <jeanpatrick.guerrero@gmail.com> | 2016-12-13 22:44:40 +0100 |
---|---|---|
committer | JP Guerrero <jeanpatrick.guerrero@gmail.com> | 2016-12-13 22:44:40 +0100 |
commit | 5113dc407a99bec1caa7329979db91ac49108c04 (patch) | |
tree | d5e9e4cc5555a71aad4fcd7c8ded6ebb8d357f26 | |
parent | f321647a6bba536f2a3715ae1d22436b2c3f68e3 (diff) |
Fix nil crash when recipe item is unknown
-rw-r--r-- | init.lua | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -46,7 +46,10 @@ function craftguide:get_tooltip(item, recipe_type, cooktime, groups) local fueltime = minetest.get_craft_result({ method="fuel", width=1, items={item}}).time local has_extras = groups or recipe_type == "cooking" or fueltime > 0 - local item_desc = groups and "" or minetest.registered_items[item].description + local item_desc = "" + if minetest.registered_items[item] and not groups then + item_desc = minetest.registered_items[item].description + end if groups then local groupstr = "Any item belonging to the " |