diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-08 18:52:31 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-08-08 18:52:31 +0800 |
commit | 335cb26c0c5f933445d6596836da581f1c0d91e2 (patch) | |
tree | 87d55d1985d80d99089dfb00ffb432feb93e428b /features | |
parent | 876a62b421c57ebf93024c6659f687e14b8c3d37 (diff) | |
download | SoopyV2-335cb26c0c5f933445d6596836da581f1c0d91e2.tar.gz SoopyV2-335cb26c0c5f933445d6596836da581f1c0d91e2.tar.bz2 SoopyV2-335cb26c0c5f933445d6596836da581f1c0d91e2.zip |
ff timer 2
Diffstat (limited to 'features')
-rw-r--r-- | features/dungeonSolvers/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index b363e37..53a3556 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -298,13 +298,13 @@ class DungeonSolvers extends Feature { this.loadf7data() this.ffCountdownTo = 0 - register('chat', (key) => { + this.registerChat("[BOSS] The Professor: Oh? You found my Guardians one weakness?", () => { this.ffCountdownTo = Date.now() + 5000 delay(5000, () => { this.ffCountdownTo = 0 }) - }).setCriteria("[BOSS] The Professor: Oh? You found my Guardians one weakness?").setContains(); + }) this.registerChat("${name} activated a lever! (${start}/${end})", (name, start, end) => { let player = World.getPlayerByName(ChatLib.removeFormatting(name)) |