aboutsummaryrefslogtreecommitdiff
path: root/features/dungeonSolvers/index.js
diff options
context:
space:
mode:
authorEmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com>2022-07-02 15:10:41 +0800
committerGitHub <noreply@github.com>2022-07-02 15:10:41 +0800
commit7e24f2165b61b9003102ba916950fb5bdc1172f0 (patch)
tree896463e05aad631d00738ee24a6d19c49a581f6f /features/dungeonSolvers/index.js
parentef58bc02faa99b7c41eecadaaef5acda9a355210 (diff)
downloadSoopyV2-7e24f2165b61b9003102ba916950fb5bdc1172f0.tar.gz
SoopyV2-7e24f2165b61b9003102ba916950fb5bdc1172f0.tar.bz2
SoopyV2-7e24f2165b61b9003102ba916950fb5bdc1172f0.zip
update
+ a cata xp hud todo + fixed step_5fps accidentally registered as step2
Diffstat (limited to 'features/dungeonSolvers/index.js')
-rw-r--r--features/dungeonSolvers/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js
index cd672a8..055734e 100644
--- a/features/dungeonSolvers/index.js
+++ b/features/dungeonSolvers/index.js
@@ -175,7 +175,7 @@ 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.step2).registeredWhen(() => this.isInDungeon());
+ this.registerStep(true, 10, this.step_5fps).registeredWhen(() => this.isInDungeon());
this.registerStep(false, 60 * 5, this.step_5min)
this.registerEvent("worldLoad", this.onWorldLoad);