Fixes Stand appending extra ".png" to texture when a "texture" attribute

is explicity set on the armor's definition.
This commit is contained in:
Scott Horvath 2019-01-19 18:09:48 -06:00 committed by stujones11
parent 4c032e8c7e
commit 813a88f3a1
1 changed files with 5 additions and 2 deletions

View File

@ -75,8 +75,11 @@ local function update_entity(pos)
local def = stack:get_definition() or {}
local groups = def.groups or {}
if groups["armor_"..element] then
local texture = def.texture or item:gsub("%:", "_")
table.insert(textures, texture..".png")
if def.texture then
table.insert(textures, def.texture)
else
table.insert(textures, item:gsub("%:", "_")..".png")
end
end
end
end