From d8edc85a6ef6029ec29339dba82d0c9fa00d1c5b Mon Sep 17 00:00:00 2001 From: EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> Date: Fri, 16 Sep 2022 15:17:54 +0800 Subject: forgot commas --- features/specialMining/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'features/specialMining') 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])}`) } }) } -- cgit