Skip to content

Commit

Permalink
Merge pull request #346 from tcsabina/master
Browse files Browse the repository at this point in the history
Removed biosuit to trigger autotrack (Issue #345)
  • Loading branch information
tcsabina committed Apr 29, 2024
2 parents d33f0e7 + ff73e3b commit c00f64f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/g_utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -2110,7 +2110,9 @@ void CalculateBestPowPlayers()
best += (p->invincible_finished >= g_globalvars.time) ? 4000 : 0; // pent
best += (p->super_damage_finished >= g_globalvars.time) ? 2000 : 0; // quad
best += (p->invisible_finished >= g_globalvars.time) ? 1000 : 0; // ring
best += (p->radsuit_finished >= g_globalvars.time) ? 500 : 0; // suit
// Disabled biosuit to trigger autotrack, as recent gameplays of new 2024 maps with
// biosuit showed that this is unwanted
// best += (p->radsuit_finished >= g_globalvars.time) ? 500 : 0; // suit
best += p->s.v.frags;

if (!ed_bestPow || best1 < best)
Expand Down

0 comments on commit c00f64f

Please sign in to comment.