Reduce K/D requirement for pro-section to 1.5

This commit is contained in:
rubenwardy 2018-01-26 23:47:46 +00:00
parent d8725d559f
commit e93dbc9bc8

View file

@ -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"}