aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com>2022-09-16 15:17:54 +0800
committerGitHub <noreply@github.com>2022-09-16 15:17:54 +0800
commitd8edc85a6ef6029ec29339dba82d0c9fa00d1c5b (patch)
treeb385c0c03adb3f00927fd0f7ece1110a4981d0c6
parent11ec47ed03ba5b00161f642534c175ac723f46ae (diff)
downloadSoopyV2-d8edc85a6ef6029ec29339dba82d0c9fa00d1c5b.tar.gz
SoopyV2-d8edc85a6ef6029ec29339dba82d0c9fa00d1c5b.tar.bz2
SoopyV2-d8edc85a6ef6029ec29339dba82d0c9fa00d1c5b.zip
forgot commas
-rw-r--r--features/specialMining/index.js4
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])}`)
}
})
}