diff options
-rw-r--r-- | featureClass/featureManager.js | 2 | ||||
-rw-r--r-- | features/mining/index.js | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/featureClass/featureManager.js b/featureClass/featureManager.js index 09799c6..75ffa48 100644 --- a/featureClass/featureManager.js +++ b/featureClass/featureManager.js @@ -747,6 +747,7 @@ class FeatureManager { } loadSoopy() { + ChatLib.chat(this.messagePrefix + "Loading SoopyV2...") this.loadFeatureMetas() this.loadFeatureSettings() @@ -758,6 +759,7 @@ class FeatureManager { }) this.finishedLoading = true + ChatLib.chat(this.messagePrefix + "SoopyV2 Loaded!") } loadFeature(feature) { //run in seperate thread so onenable can do network requests diff --git a/features/mining/index.js b/features/mining/index.js index 74f23a3..55031c9 100644 --- a/features/mining/index.js +++ b/features/mining/index.js @@ -242,6 +242,10 @@ class Mining extends Feature { return } + if (this.predictedChestLocations.length === 0) { + World.playSound("note.pling", 100, 2) + } + this.predictedChestLocations.push([this.baseCoordinates[0] - coordinates[0], this.baseCoordinates[1] - coordinates[1], this.baseCoordinates[2] - coordinates[2]]) } }); |