Fix crash when a node texture is a table

This commit is contained in:
HybridDog 2018-08-06 13:27:10 +02:00
parent 0112f1f9ec
commit 1d2e42eaab
1 changed files with 3 additions and 3 deletions

View File

@ -67,15 +67,15 @@ minetest.settings:get_bool("enable_item_pickup") ~= false then
local top = tiles[1]
if type(top) == "table" then
top = top.item
top = top.name
end
local left = tiles[3] or top
if type(left) == "table" then
left = left.item
left = left.name
end
local right = tiles[5] or left
if type(right) == "table" then
right = right.item
right = right.name
end
image = minetest.inventorycube(top, left, right)