Finish position is now factored into exp

This commit is contained in:
Ashnal 2025-09-18 20:33:58 -04:00 committed by AJ Martinez
parent 60fca5210d
commit 2be14316cf

View file

@ -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;