Skip to content

Commit

Permalink
fix: 발음게임 점수 버그 (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
student079 authored Dec 1, 2024
1 parent 50dcf9c commit bb213b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/gameServer/src/modules/games/games-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,5 @@ export function updatePreviousPlayers(
}

export function transformScore(originalScore: number) {
return Math.max(originalScore + 45, 100);
return Math.min(originalScore + 45, 100);
}

0 comments on commit bb213b4

Please sign in to comment.