Skip to content

Commit

Permalink
remove 0 prefix in reputation renown
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdekrieger committed Jan 28, 2023
1 parent 03d8ee5 commit 1b98441
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/reputations.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function levelsAsList(levelsDict) {
function maxRenownToLevels(maxRenown, step = 2500) {
var items = [];
for (i = 0; i <= maxRenown; i++) {
items.push([i * step, "Renown 0" + i])
items.push([i * step, "Renown " + i])
}
return items;
}

0 comments on commit 1b98441

Please sign in to comment.