Don't show armor bar for 0 armor

This commit is contained in:
Wuzzy 2020-02-18 20:10:35 +01:00
parent 5729d70814
commit 329452d5ce
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ end
local must_hide = function(playername, arm)
return ((not armor.def[playername].count or armor.def[playername].count == 0) and arm == 0)
return arm == 0
end
local arm_printable = function(arm)