From 2be14316cfd1ce6c6b2efeab9cd9e6bbb9201337 Mon Sep 17 00:00:00 2001 From: Ashnal Date: Thu, 18 Sep 2025 20:33:58 -0400 Subject: [PATCH] Finish position is now factored into exp --- src/k_tally.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_tally.cpp b/src/k_tally.cpp index 35af7b9ae..8e462551b 100644 --- a/src/k_tally.cpp +++ b/src/k_tally.cpp @@ -225,7 +225,7 @@ INT32 level_tally_t::CalculateGrade(void) } } - const INT32 positionWeight = (position > 0 && numPlayers > 2) ? 50 : 0; + const INT32 positionWeight = 0; // (position > 0 && numPlayers > 2) ? 50 : 0; const INT32 total = positionWeight + bonusWeights[0] + bonusWeights[1]; INT32 ours = 0;