Fixed bugs with /chelp

This commit is contained in:
Cooldude2606
2019-03-08 17:42:52 +00:00
parent 4fccddf784
commit 43b5873530
4 changed files with 31 additions and 13 deletions

View File

@@ -67,7 +67,7 @@ Commands.add_parse('integer',function(input,player,reject)
if not number then
return reject{'expcore-commands.reject-number'}
else
return number:floor()
return math.floor(number)
end
end)