Add rounding to score given by /rankings

This commit is contained in:
rubenwardy 2018-01-27 22:17:15 +00:00
parent c6526d32f2
commit 4f7a88facf

View file

@ -152,7 +152,7 @@ local function send_as_chat_result(to, name)
" | K/D: " .. math.floor(kd*10)/10 ..
" | Captures: " .. me.captures ..
" | Attempts: " .. me.attempts ..
" | Score: " .. me.score
" | Score: " .. math.floor(me.score)
end
return true, result
end