We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f707f7e commit 66dc5b7Copy full SHA for 66dc5b7
src/main/java/com/moing/backend/domain/teamScore/application/service/TeamScoreGetUseCase.java
@@ -30,13 +30,9 @@ public TeamScoreRes getTeamScoreInfo(Long teamId) {
30
Long level = teamScore.getLevel();
31
Long score = teamScore.getScore();
32
33
- // 70 레벨 이상은 경험치 120 되어야 레벨업 가능. level을 각 레벨 별 필요한 경험치 수에 따르 퍼센트로 계산
34
- if (level > 70) {
35
- score = ( score / 120 ) * 100;
36
- }
37
38
return TeamScoreRes.builder()
39
- .score(score)
+ .score(score%100)
40
.level(level)
41
.build();
42
0 commit comments