From 9efaf2250303d44089b2993af6f532921919f2fa Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Sun, 8 May 2022 10:33:14 +0800 Subject: + inquis waypoints correctly dissapear when u dig a burrow --- features/events/index.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'features/events') diff --git a/features/events/index.js b/features/events/index.js index 309a788..61ba36e 100644 --- a/features/events/index.js +++ b/features/events/index.js @@ -190,6 +190,7 @@ class Events extends Feature { e = new Entity(e) if (e.getName().toLowerCase().includes("inquis") && Math.abs(e.getY() - Player.getY()) < 10 && Math.abs(e.getX() - Player.getX()) < 10 && Math.abs(e.getZ() - Player.getZ()) < 10) { socketConnection.sendInquisData({ loc: [Math.round(Player.getX()), Math.round(Player.getY()), Math.round(Player.getZ())] }); + this.inquisWaypointSpawned = true } }) this.todoE = [] @@ -383,6 +384,7 @@ class Events extends Feature { burrialClicked() { if (this.inquisWaypointSpawned) { socketConnection.sendInquisData({ loc: null }); + this.inquisWaypointSpawned = false } if (!this.showingWaypoints) return -- cgit