From e9266b0f6658513cff6f8c0340cc4ee2ac4a0303 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Tue, 10 May 2022 07:35:01 +0800 Subject: + you can now use burrial location estimation without enabling the load waypoints setting (so you can use load waypoints from eg skytils and soopy estimation) --- features/events/index.js | 2 +- metadata.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/features/events/index.js b/features/events/index.js index 5190808..98ea6c8 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -150,7 +150,7 @@ class Events extends Feature { } }) - let showingWaypointsNew = (this.lastWorldChange + 5000 < Date.now() ? hasDianaShovle && this.FeatureManager.features["dataLoader"].class.area === "Hub" && this.loadFromParticles.getValue() : this.showingWaypoints || (hasDianaShovle && this.FeatureManager.features["dataLoader"].class.area === "Hub" && this.loadFromParticles.getValue())) + let showingWaypointsNew = (this.lastWorldChange + 5000 < Date.now() ? hasDianaShovle && this.FeatureManager.features["dataLoader"].class.area === "Hub" && (this.loadFromParticles.getValue() || this.showBurrialGuess.getValue()) : this.showingWaypoints || (hasDianaShovle && this.FeatureManager.features["dataLoader"].class.area === "Hub" && (this.loadFromParticles.getValue() || this.showBurrialGuess.getValue()))) this.showingWaypoints = showingWaypointsNew diff --git a/metadata.json b/metadata.json index 8e371d0..c08e939 100644 --- a/metadata.json +++ b/metadata.json @@ -5,8 +5,8 @@ "entry": "index.js", "description": "SoopyV2", "name": "SoopyV2", - "version": "2.1.71", - "versionId": 198, + "version": "2.1.72", + "versionId": 199, "requires": [ "soopyApis", "soopyAddonsData", -- cgit