Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cyperdark committed Mar 5, 2024
1 parent 00ed181 commit 2b058d7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/tosu/src/entities/BeatmapPpData/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,9 @@ export class BeatmapPPData extends AbstractEntity {

updateCurrentAttributes(stars: number, pp: number) {
wLogger.debug(
`BPPD(updateCurrentAttributes) maxPP -> ${this.currAttributes.maxThisPlayPP} pp -> ${pp} stars -> ${stars}`
`BPPD(updateCurrentAttributes) maxPP -> ${this.currAttributes.maxThisPlayPP.toFixed(
2
)} pp -> ${pp.toFixed(2)} stars -> ${stars.toFixed(2)}`
);
const maxThisPlayPP = Math.max(pp, this.currAttributes.maxThisPlayPP);

Expand Down Expand Up @@ -232,7 +234,7 @@ export class BeatmapPPData extends AbstractEntity {
wLogger.debug(
`BPPD(updateMapMetadata) [${(
calculation_time - beatmap_check_time
).toFixed(2)}ms] Spend on attributes & starins calculation`
).toFixed(2)}ms] Spend on attributes & strains calculation`
);

const resultStrains: BeatmapStrains = {
Expand Down

0 comments on commit 2b058d7

Please sign in to comment.