Change score algorithm again

This commit is contained in:
rubenwardy 2015-12-04 11:24:39 +00:00
parent 60796eb66c
commit 380e754422

View file

@ -22,7 +22,7 @@ function ctf_stats.get_formspec(title, players)
pstat.deaths = pstat.deaths or 0
pstat.captures = pstat.captures or 0
pstat.attempts = pstat.attempts or 0
pstat.score = pstat.kills + 10 * pstat.captures +
pstat.score = 0.1 * pstat.kills + 10 * pstat.captures +
5 * pstat.attempts + pstat.kills / (pstat.deaths + 1)
end
table.sort(players, function(one, two)