Divide ratingInceaseCount by 100000 (!242)

Should address massive flea rep gains. Tested about 10 cases, all seem within expected range.

Divided ratingIncreaseCount by a factor of 100000

Co-authored-by: Corey <dirtbikercj@gmail.com>
Reviewed-on: https://dev.sp-tarkov.com/SPT-AKI/Server/pulls/242
Co-authored-by: Cj <cj@noreply.dev.sp-tarkov.com>
Co-committed-by: Cj <cj@noreply.dev.sp-tarkov.com>
This commit is contained in:
Cj 2024-03-04 17:16:34 +00:00 committed by chomp
parent a5de871c92
commit 9bd9ad30c0

View File

@ -360,7 +360,7 @@ export class RagfairOfferHelper
return; return;
} }
profile.characters.pmc.RagfairInfo.rating += profile.characters.pmc.RagfairInfo.rating +=
this.databaseServer.getTables().globals.config.RagFair.ratingIncreaseCount * amountToIncrementBy; (this.databaseServer.getTables().globals.config.RagFair.ratingIncreaseCount / 100000) * amountToIncrementBy;
} }
/** /**