From 3525dce1d84a53dae0414388ba886b66323e2afd Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Wed, 3 Aug 2022 19:03:59 +0800 Subject: small fixes --- features/dungeonSolvers/index.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'features/dungeonSolvers') diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 60d4b16..1643057 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -280,6 +280,12 @@ class DungeonSolvers extends Feature { this.area = -1 this.areaUpdated() }) + this.registerEvent("worldLoad", () => { + if (this.area !== -1) { + this.area = -1 + this.areaUpdated() + } + }) this.registerChat("[BOSS] Goldor: Who dares trespass into my domain?", () => { this.area = 0 this.areaUpdated() -- cgit