fix functions in mcl_hbarmor

This commit is contained in:
AFCMS 2021-05-26 16:43:36 +02:00
parent fd387a65af
commit ee9577b625
1 changed files with 2 additions and 2 deletions

View File

@ -21,11 +21,11 @@ if tonumber(set) ~= nil then
end
local must_hide = function(playername, arm)
local function must_hide(playername, arm)
return arm == 0
end
local arm_printable = function(arm)
local function arm_printable(arm)
return math.ceil(math.floor(arm+0.5))
end