diff --git a/src/commands/score.ts b/src/commands/score.ts index 9bd1978..cf9a895 100644 --- a/src/commands/score.ts +++ b/src/commands/score.ts @@ -27,7 +27,7 @@ export default class Score extends Command { else if (score.total > 800) totalScore = '800'; else totalScore = `${score.total}`; - if (score.activity <= 0) activityScore = '---'; + if (score.activity < 10) activityScore = '---'; else if (score.activity > 55) activityScore = '55'; else activityScore = `${score.activity}`;