From 68984c4463ff51d60e745d43bf51eb15540725d2 Mon Sep 17 00:00:00 2001 From: Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> Date: Thu, 25 Aug 2022 19:58:07 +0800 Subject: + fix dungeon map + powder hud fixes + guild bridge formatting + meta --- features/specialMining/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'features/specialMining') diff --git a/features/specialMining/index.js b/features/specialMining/index.js index 7f7a787..2694427 100644 --- a/features/specialMining/index.js +++ b/features/specialMining/index.js @@ -63,7 +63,7 @@ class PowderAndScatha extends Feature { this.overlayRight = [] this.leftCH = false; - this.registerChat("&7Sending to server ${s}&r", (s, e) => { + this.registerEvent("worldLoad", () => { if (this.inCrystalHollows) { this.leftCH = true; this.inCrystalHollows = false; @@ -169,6 +169,7 @@ class PowderAndScatha extends Feature { resetMiningData(type) { if (type === "powder") { Object.keys(this.miningData.powder).forEach(thing => this.miningData.powder[thing] = 0) + this.expRateInfo = [] } else if (type === "scatha") { //TODO } -- cgit