diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-03 19:03:59 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-03 19:03:59 +0800 |
commit | 3525dce1d84a53dae0414388ba886b66323e2afd (patch) | |
tree | 1c3a0a37bcd11fd30131b0c834864ce60bf04221 /features/dungeonSolvers | |
parent | c7f0e8bcbb3cabda3a9bb11f1235763d59c07875 (diff) | |
download | SoopyV2-3525dce1d84a53dae0414388ba886b66323e2afd.tar.gz SoopyV2-3525dce1d84a53dae0414388ba886b66323e2afd.tar.bz2 SoopyV2-3525dce1d84a53dae0414388ba886b66323e2afd.zip |
small fixes
Diffstat (limited to 'features/dungeonSolvers')
-rw-r--r-- | features/dungeonSolvers/index.js | 6 |
1 files changed, 6 insertions, 0 deletions
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() |