diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-09-16 15:15:45 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-16 15:15:45 +0800 |
commit | 11ec47ed03ba5b00161f642534c175ac723f46ae (patch) | |
tree | 454f8dcd0dd4e94f69681aa10466ca2efc933620 /features/specialMining/index.js | |
parent | efe3b3434a270f801ed1f38fcd26e265971ada3d (diff) | |
download | SoopyV2-11ec47ed03ba5b00161f642534c175ac723f46ae.tar.gz SoopyV2-11ec47ed03ba5b00161f642534c175ac723f46ae.tar.bz2 SoopyV2-11ec47ed03ba5b00161f642534c175ac723f46ae.zip |
Update index.js
Diffstat (limited to 'features/specialMining/index.js')
-rw-r--r-- | features/specialMining/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/specialMining/index.js b/features/specialMining/index.js index 614bc07..702bd98 100644 --- a/features/specialMining/index.js +++ b/features/specialMining/index.js @@ -73,11 +73,11 @@ class PowderAndScatha extends Feature { //&r&aYou received &r&f1 &r&a&r&aGreen Goblin Egg&r&a.&r this.registerChat("&r&aYou received ${thing}&r&a.&r", (thing, e) => { if (this.hideGemstoneMessage.getValue() && thing.endsWith("Gemstone") && (this.showFlawlessGemstone.getValue() ? !thing.includes("Flawless") : true)) { + cancel(e) if (thing.includes("Amethyst")) this.tempLocation = "Jungle" if (thing.includes("Sapphire")) this.tempLocation = "Precursor_Remnants" if (thing.includes("Amber")) this.tempLocation = "Goblin_Holdout" if (thing.includes("Jade")) this.tempLocation = "Mithril_Deposits" - cancel(e) } if (this.hideWishingCompassMessage.getValue() && thing.endsWith("Wishing Compass")) cancel(e) if (this.hideAscensionRope.getValue() && thing.endsWith("Ascension Rope")) cancel(e) |