Fix nil fields exception for unknown items.

This commit is contained in:
stujones11 2013-03-04 21:15:25 +00:00
parent 8f7bad9690
commit b9a6655858
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,9 @@ armor_api.get_wielded_item_texture = function(self, player)
if not item then
return nil
end
if not minetest.registered_items[item] then
return nil
end
local texture = minetest.registered_items[item].inventory_image
if texture == "" then
if not minetest.registered_items[item].tiles then