Improve get_armor_formspec

This commit is contained in:
stujones11 2017-03-29 19:18:49 +01:00
parent 5911447048
commit 4083782246
1 changed files with 3 additions and 3 deletions

View File

@ -288,15 +288,15 @@ armor.get_preview = function(self, name)
end
armor.get_armor_formspec = function(self, name, listring)
if not armor.def[name] or not armor.textures[name] then
return ""
end
local formspec = armor.formspec..
"list[detached:"..name.."_armor;armor;0,0.5;2,3;]"
if listring == true then
formspec = formspec.."listring[current_player;main]"..
"listring[detached:"..name.."_armor;armor]"
end
if not armor.def[name] or not armor.textures[name] then
return formspec
end
formspec = formspec:gsub("armor_preview", armor.textures[name].preview)
formspec = formspec:gsub("armor_level", armor.def[name].level)
for _, attr in pairs(self.attributes) do