diff options
author | EmeraldMerchant <96396730+EmeraldMerchant@users.noreply.github.com> | 2022-08-10 17:38:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-10 17:38:54 +0800 |
commit | 3783fc60b3ea1ee4143825038ade8f7fa9afe28d (patch) | |
tree | 37a6f1c6afa24d624043e4547c8ea72d44b6c9f6 /features/dungeonSolvers | |
parent | 1a1a03cb1477e1b89b39d080347a2e28ae72d6fa (diff) | |
download | SoopyV2-3783fc60b3ea1ee4143825038ade8f7fa9afe28d.tar.gz SoopyV2-3783fc60b3ea1ee4143825038ade8f7fa9afe28d.tar.bz2 SoopyV2-3783fc60b3ea1ee4143825038ade8f7fa9afe28d.zip |
fixed ice spray chat msg
Diffstat (limited to 'features/dungeonSolvers')
-rw-r--r-- | features/dungeonSolvers/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/features/dungeonSolvers/index.js b/features/dungeonSolvers/index.js index 471d3d5..187d46c 100644 --- a/features/dungeonSolvers/index.js +++ b/features/dungeonSolvers/index.js @@ -116,7 +116,7 @@ class DungeonSolvers extends Feature { this.spiritMaskTimer = 0; this.eraseBonzoTimer = true; }); - this.registerStep(false, 30, this.getBonzoMaskCooldown()); + this.registerStep(false, 30, this.getBonzoMaskCooldown); this.bonzoSpiritMaskTimer = new ToggleSetting("Timer for when bonzo/spirit mask will be ready", "works for both bonzo masks, hides bonzo masks' timers after you leave the run", false, "bonzo_mask_timer", this); this.bonzoSpiritMaskTimerElement = new HudTextElement().setToggleSetting(this.bonzoSpiritMaskTimer).setLocationSetting(new LocationSetting("Bonzo/Spirit Mask timer location", "Allows you to edit the location of the timer", "bonzo_mask_timer_location", this, [10, 100, 1, 1]).requires(this.bonzoSpiritMaskTimer).editTempText("&9Bonzo's Mask: &c157s")); this.hudElements.push(this.bonzoSpiritMaskTimerElement); @@ -1182,7 +1182,7 @@ class DungeonSolvers extends Feature { let MobName = ChatLib.removeFormatting(name.getName()) if (MobName.includes("Ice Spray Wand") && name.getTicksExisted() <= 199) { Client.showTitle(`&r&6&l[&b&l&kO&6&l] ${MobName.toUpperCase()} &6&l[&b&l&kO&6&l]`, "", 0, 40, 10); - ChatLib.chat(`&6&lRARE DROP! &r${MobName}`) + ChatLib.chat(`&6&lRARE DROP! &r${name}`) } }) } |