Skip to content

Commit

Permalink
fix: Fix wrong pp in result screen
Browse files Browse the repository at this point in the history
  • Loading branch information
cyperdark committed Nov 13, 2024
1 parent bba98e4 commit 7ee40e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tosu/src/states/resultScreen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export class ResultScreen extends AbstractState {
'menu'
]);

const key = `${menu.checksum}${this.mods}${this.mode}${this.playerName}`;
const key = `${menu.checksum}${this.mods.checksum}${this.mode}${this.playerName}`;
if (this.previousBeatmap === key) {
return;
}
Expand Down

0 comments on commit 7ee40e1

Please sign in to comment.