aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonSolvers/index.js
diff options
context:
space:
mode:
authorEmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com>2022-07-02 15:34:25 +0800
committerGitHub <noreply@github.com>2022-07-02 15:34:25 +0800
commit03b0283e5ef7cc3f65373d8c5e71a8447e569101 (patch)
tree1d6a6f9a891514c97ed1d0f1d0b65644fb5277ec /features/dungeonSolvers/index.js
parent7e24f2165b61b9003102ba916950fb5bdc1172f0 (diff)
downloadSoopyV2-03b0283e5ef7cc3f65373d8c5e71a8447e569101.tar.gz
SoopyV2-03b0283e5ef7cc3f65373d8c5e71a8447e569101.tar.bz2
SoopyV2-03b0283e5ef7cc3f65373d8c5e71a8447e569101.zip
update fix
+ fix fix
Diffstat (limited to 'features/dungeonSolvers/index.js')
-rw-r--r--features/dungeonSolvers/index.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js
index 055734e..737e4e1 100644
--- a/features/dungeonSolvers/index.js
+++ b/features/dungeonSolvers/index.js
@@ -175,7 +175,8 @@ class DungeonSolvers extends Feature {
this.registerStep(true, 2, this.stepNotDung).registeredWhen(() => !this.isInDungeon());
this.registerStep(true, 2, this.step).registeredWhen(() => this.isInDungeon());
this.registerStep(false, 60, this.step)
- this.registerStep(true, 10, this.step_5fps).registeredWhen(() => this.isInDungeon());
+ this.registerStep(true, 10, this.step2).registeredWhen(() => this.isInDungeon());
+ this.registerStep(true, 5, this.step_5fps).registeredWhen(() => this.isInDungeon());
this.registerStep(false, 60 * 5, this.step_5min)
this.registerEvent("worldLoad", this.onWorldLoad);