diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-24 07:42:28 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-24 07:42:28 +0800 |
commit | 23426c7812d1f7ee2ec4274882c265a15c4cb8f8 (patch) | |
tree | 48fd4b5e1a315f1c8eadfe9406ca48f056a6e0ed /features | |
parent | e698febfc5c96a3520606706b02ecfc4ba6aa4dd (diff) | |
download | SoopyV2-23426c7812d1f7ee2ec4274882c265a15c4cb8f8.tar.gz SoopyV2-23426c7812d1f7ee2ec4274882c265a15c4cb8f8.tar.bz2 SoopyV2-23426c7812d1f7ee2ec4274882c265a15c4cb8f8.zip |
make powder/h collect data over 20 chests in history instead of 10
Diffstat (limited to 'features')
-rw-r--r-- | features/specialMining/index.js | 2 |
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] |