1
0
réplica de https://github.com/minetest-mods/3d_armor.git sincronizado 2025-10-21 09:35:48 +02:00

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

is explicity set on the armor's definition.
Este cometimento está contido em:
Scott Horvath
2019-01-19 18:09:48 -06:00
cometido por stujones11
ascendente 4c032e8c7e
cometimento 813a88f3a1

Ver ficheiro

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