Reduce K/D requirement for pro-section to 1.5
This commit is contained in:
parent
d8725d559f
commit
e93dbc9bc8
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ end
|
||||||
|
|
||||||
local function get_is_player_pro(pstat)
|
local function get_is_player_pro(pstat)
|
||||||
local kd = pstat.kills / max(pstat.deaths, 1)
|
local kd = pstat.kills / max(pstat.deaths, 1)
|
||||||
return pstat.score > 1000 and kd > 2
|
return pstat.score > 1000 and kd > 1.5
|
||||||
end
|
end
|
||||||
|
|
||||||
local colors = {"red", "blue"}
|
local colors = {"red", "blue"}
|
||||||
|
|
Loading…
Reference in a new issue