Skip to content

Commit

Permalink
[arcaea] Add inGameID as a supported match type (#959)
Browse files Browse the repository at this point in the history
  • Loading branch information
beer-psi authored Oct 11, 2023
1 parent ad2a261 commit 7f5c56e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/src/config/game-support/arcaea.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,5 +132,5 @@ export const ARCAEA_TOUCH_CONF = {
preferences: z.strictObject({}),
scoreMeta: z.strictObject({}),

supportedMatchTypes: ["songTitle", "tachiSongID"],
supportedMatchTypes: ["inGameID", "songTitle", "tachiSongID"],
} as const satisfies INTERNAL_GAME_PT_CONFIG;
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 7f5c56e

Please sign in to comment.