aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--features/specialMining/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/specialMining/index.js b/features/specialMining/index.js
index 2fca3cf..8e6fe16 100644
--- a/features/specialMining/index.js
+++ b/features/specialMining/index.js
@@ -108,7 +108,7 @@ class PowderAndScatha extends Feature {
this.miningData.powder.chests++
delay(100, () => {
this.expRateInfo.push([Date.now(), this.miningData.powder.mithril, this.miningData.powder.gemstone])
- if (this.expRateInfo.length > 10) this.expRateInfo.shift()
+ if (this.expRateInfo.length > 20) this.expRateInfo.shift()
let [time, mythril, gemstone] = this.expRateInfo[0]