diff options
Diffstat (limited to 'features/specialMining')
-rw-r--r-- | features/specialMining/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/specialMining/index.js b/features/specialMining/index.js index 702bd98..1edeadd 100644 --- a/features/specialMining/index.js +++ b/features/specialMining/index.js @@ -425,7 +425,7 @@ class PowderAndScatha extends Feature { Object.keys(this.tempLoot.global).forEach(t => { if (this.tempLoot.global[t] > 0) { this.overlayLeft.push(`${this.treasureColored[t]}&b:`) - this.overlayRight.push(`&b${this.tempLoot.global[t]}`) + this.overlayRight.push(`&b${numberWithCommas(this.tempLoot.global[t])}`) } }) } @@ -433,7 +433,7 @@ class PowderAndScatha extends Feature { Object.keys(this.tempLoot[this.tempLocation]).forEach(t => { if (this.tempLoot[this.tempLocation][t] > 0) { this.overlayLeft.push(`${this.treasureColored[t]}&b:`) - this.overlayRight.push(`&b${this.tempLoot[this.tempLocation][t]}`) + this.overlayRight.push(`&b${numberWithCommas(this.tempLoot[this.tempLocation][t])}`) } }) } |