diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-25 15:56:35 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-06-25 15:56:35 +0800 |
commit | 118fb2e6547fc4078b539afd42b4e373682b747e (patch) | |
tree | 4a3114f5b8b3843348572b91562317bbff918e05 /features/mining | |
parent | 30e0e951950bf7001fb3586e6471bc4948566904 (diff) | |
download | SoopyV2-118fb2e6547fc4078b539afd42b4e373682b747e.tar.gz SoopyV2-118fb2e6547fc4078b539afd42b4e373682b747e.tar.bz2 SoopyV2-118fb2e6547fc4078b539afd42b4e373682b747e.zip |
+ more performance tracking stuff
Diffstat (limited to 'features/mining')
-rw-r--r-- | features/mining/index.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/features/mining/index.js b/features/mining/index.js index 98f045c..3502975 100644 --- a/features/mining/index.js +++ b/features/mining/index.js @@ -76,6 +76,8 @@ class Mining extends Feature { this.lastBalAlive = 0 this.balDespawnDebounce = 0 + this.predictedChestLocations = [] + this.totalCompact = 0 this.compactProgress = 0 this.compactItems = 0 @@ -183,8 +185,6 @@ class Mining extends Feature { this.lastSearchedForBase = 0 - this.predictedChestLocations = [] - let ignoreLocation = undefined this.registerEvent("worldLoad", () => { @@ -200,7 +200,6 @@ class Mining extends Feature { }) let registerActionBar = this.registerCustom("actionbar", (dist) => { - let lapis = false let diamond = false let emerald = false |