aboutsummaryrefslogtreecommitdiff
path: root/src/features/specialMining
diff options
context:
space:
mode:
authorSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-09-27 15:41:25 +0800
committerSoopyboo32 <49228220+Soopyboo32@users.noreply.github.com>2022-09-27 15:41:25 +0800
commit22bbcec4bceba8e8b314d18bf9b54bfc2c591ba3 (patch)
tree6572f91b391b651dd80d856a755786ff291d1802 /src/features/specialMining
parentc24f8369cb7a368c1c89404c2860f4f2f4b78014 (diff)
downloadSoopyV2-22bbcec4bceba8e8b314d18bf9b54bfc2c591ba3.tar.gz
SoopyV2-22bbcec4bceba8e8b314d18bf9b54bfc2c591ba3.tar.bz2
SoopyV2-22bbcec4bceba8e8b314d18bf9b54bfc2c591ba3.zip
+ fix double powder not disabling
+ (possibly) fix diana warp hotkey being buggy
Diffstat (limited to 'src/features/specialMining')
-rw-r--r--src/features/specialMining/index.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/features/specialMining/index.js b/src/features/specialMining/index.js
index e548b87..8b13ac3 100644
--- a/src/features/specialMining/index.js
+++ b/src/features/specialMining/index.js
@@ -192,7 +192,7 @@ class PowderAndScatha extends Feature {
if (this.chestUncoverAlertSound.getValue()) World.playSound("random.levelup", 1, 1);
})
- this.registerChat("&r&r&r${space}&r&b&l2X POWDER ${status}!&r", (space, status, e) => {
+ this.registerChat("${space}&r&b&l2X POWDER ${status}!&r", (space, status, e) => {
if (status.removeFormatting() === "STARTED") {
this.dPowder = Date.now() + 15 * 1000 * 60
} else this.dPowder = 0
@@ -385,6 +385,8 @@ class PowderAndScatha extends Feature {
});
}
+ if (Date.now() > this.dPowder) this.dPowder = 0
+
this.overlayLeft = []
this.overlayRight = []