From 118fb2e6547fc4078b539afd42b4e373682b747e Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sat, 25 Jun 2022 15:56:35 +0800 Subject: + more performance tracking stuff --- features/mining/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'features/mining') 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 -- cgit