From 335cb26c0c5f933445d6596836da581f1c0d91e2 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Mon, 8 Aug 2022 18:52:31 +0800 Subject: ff timer 2 --- features/dungeonSolvers/index.js | 4 ++-- 1 file 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)) -- cgit