From e93dbc9bc89e81c59956dda48972db31ababf636 Mon Sep 17 00:00:00 2001 From: rubenwardy Date: Fri, 26 Jan 2018 23:47:46 +0000 Subject: [PATCH] Reduce K/D requirement for pro-section to 1.5 --- mods/ctf_team_base/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ctf_team_base/init.lua b/mods/ctf_team_base/init.lua index fa9cb20..f046622 100644 --- a/mods/ctf_team_base/init.lua +++ b/mods/ctf_team_base/init.lua @@ -12,7 +12,7 @@ end local function get_is_player_pro(pstat) local kd = pstat.kills / max(pstat.deaths, 1) - return pstat.score > 1000 and kd > 2 + return pstat.score > 1000 and kd > 1.5 end local colors = {"red", "blue"}