We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3802cc commit 5aaddd2Copy full SHA for 5aaddd2
mods/ctf/ctf_modebase/features.lua
@@ -14,8 +14,13 @@ ctf_core.testing = {
14
avg = actual_kd_diff
15
end
16
return (best_kd.kills + worst_kd.kills >= 30 and best_kd.t == best_players.t) or
17
- (pkd >= math.min(1, kd_diff/2) and avg >= 0.4 and (players_diff <= one_fourth or
18
- (pkd >= 1.5 and players_diff <= one_third)))
+ (
+ pkd >= math.min(1, kd_diff/2) and avg >= 0.4 and
19
20
+ players_diff <= math.min(one_fourth, 3) or
21
+ (pkd >= 1.5 and players_diff <= math.min(one_third, 6))
22
+ )
23
24
25
}
26
0 commit comments