diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-07-02 15:10:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 15:10:41 +0800 |
commit | 7e24f2165b61b9003102ba916950fb5bdc1172f0 (patch) | |
tree | 896463e05aad631d00738ee24a6d19c49a581f6f /features/dungeonSolvers/index.js | |
parent | ef58bc02faa99b7c41eecadaaef5acda9a355210 (diff) | |
download | SoopyV2-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.js | 2 |
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); |