diff --git a/src/commands/score.ts b/src/commands/score.ts index 779c719..c612753 100644 --- a/src/commands/score.ts +++ b/src/commands/score.ts @@ -36,7 +36,7 @@ export default class Score extends Command { const cloudServicesArray: number[] = []; const otherArray: number[] = []; const miscArray: number[] = []; - for (const hist of hists) { + for (const hist of hists.reverse()) { totalArray.push(hist.report.total); activityArray.push(hist.report.activity); moderationArray.push(hist.report.moderation); @@ -188,7 +188,7 @@ export default class Score extends Command { const cloudServicesArray: number[] = []; const otherArray: number[] = []; const miscArray: number[] = []; - for (const hist of hists) { + for (const hist of hists.reverse()) { totalArray.push(hist.report.total); activityArray.push(hist.report.activity); moderationArray.push(hist.report.moderation);