Reduce bounty rewards

master
LoneWolfHT 2022-06-22 11:04:11 -07:00
parent 3ec8c74047
commit 8a896e5b77
1 changed files with 1 additions and 1 deletions

View File

@ -31,5 +31,5 @@ function ctf_modebase.bounty_algo.kd.bounty_reward_func(pname)
local recent = ctf_modebase:get_current_mode().recent_rankings.players()[pname] or {}
local kd = (recent.kills or 1) / (recent.deaths or 1)
return {bounty_kills = 1, score = math.max(0, math.min(120, kd * 14))}
return {bounty_kills = 1, score = math.max(5, math.min(120, kd * 7))}
end