diff options
-rw-r--r-- | features/dungeonSolvers/index.js | 2 | ||||
-rw-r--r-- | index.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 2757bd0..83c8e24 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -366,7 +366,7 @@ class DungeonSolvers extends Feature { this.todoE = []; - if (Date.now() - this.lastPingCheck > 60000 * 30 || (Date.now() - this.lastPingCheck > 60000 && this.lastPings.includes(undefined))) { + if (Date.now() - this.lastPingCheck > 60000 * 30 || (Date.now() - this.lastPingCheck > 60000 && this.lastPings.includes(undefined)) && this.bloodX!== -1) { this.lastPingCheck = Date.now(); ChatLib.command("whereami"); this.checkingPing = true; @@ -23,9 +23,9 @@ if(FileLib.read("soopyAddonsData", "deletesoopyv1please.txt") === "true"){ if(FileLib.read("soopyAddonsData", "firstload.txt") !== "true"){ new Thread(()=>{ ChatLib.chat("&7Loading SoopyV2 required modules...") //idk what to say to chat, but it requires an extra ct load after starting to load stuff like mappings + FileLib.write("soopyAddonsData", "firstload.txt", "true") Thread.sleep(2000) - FileLib.write("soopyAddonsData", "firstload.txt", "true") ChatLib.command("ct reload", true) }).start() |