From 23426c7812d1f7ee2ec4274882c265a15c4cb8f8 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Wed, 24 Aug 2022 07:42:28 +0800 Subject: make powder/h collect data over 20 chests in history instead of 10 --- features/specialMining/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- cgit