From 4f7a88facfc280044699232dbe9de8eb87fb1170 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Sat, 27 Jan 2018 22:17:15 +0000 Subject: [PATCH] Add rounding to score given by /rankings --- mods/ctf_stats/gui.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ctf_stats/gui.lua b/mods/ctf_stats/gui.lua index b33e244..5ed5b57 100644 --- a/mods/ctf_stats/gui.lua +++ b/mods/ctf_stats/gui.lua @@ -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