From 19ce34153b126c824ecd1669b3275f9c597cbc99 Mon Sep 17 00:00:00 2001 From: Thomas--S Date: Thu, 5 Dec 2019 19:36:03 +0100 Subject: [PATCH] Increase score requirements for `is_pro` Closes #519 --- mods/ctf/ctf_stats/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ctf/ctf_stats/init.lua b/mods/ctf/ctf_stats/init.lua index 6fe1c04..ab7e593 100644 --- a/mods/ctf/ctf_stats/init.lua +++ b/mods/ctf/ctf_stats/init.lua @@ -198,7 +198,7 @@ end function ctf_stats.is_pro(name) local stats = ctf_stats.player(name) local kd = stats.kills / (stats.deaths == 0 and 1 or stats.deaths) - return stats.score > 1000 and kd > 1.5 + return stats.score > 10000 and kd > 1.5 end ctf.register_on_join_team(function(name, tname)