Skip to content

Commit

Permalink
fix: Only take best 30 into account for NaivePotential
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-psi authored Oct 11, 2023
1 parent fe775e4 commit 6f96e7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/game-implementations/games/arcaea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const ARCAEA_IMPL: GPTServerImplementation<GPTStrings["arcaea"]> = {
naivePotential: SessionAvgBest10For("potential"),
},
profileCalcs: {
naivePotential: ProfileAvgBestN("potential", 50),
naivePotential: ProfileAvgBestN("potential", 30),
},
classDerivers: {
badge: (ratings) => {
Expand Down

0 comments on commit 6f96e7e

Please sign in to comment.