diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-22 22:33:11 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2022-07-22 22:33:11 +0800 |
commit | 218d91e91db6df30b28764d64d59ffbe709ce538 (patch) | |
tree | dc32094eedce0634b214aa589a71a65383b5f2cc /features/hud/index.js | |
parent | ce327e5d9225d19cd758d8cdae3136e47a374ccc (diff) | |
download | SoopyV2-218d91e91db6df30b28764d64d59ffbe709ce538.tar.gz SoopyV2-218d91e91db6df30b28764d64d59ffbe709ce538.tar.bz2 SoopyV2-218d91e91db6df30b28764d64d59ffbe709ce538.zip |
+ fix show dragon damages needing soulflow to be enabled (lol)
Diffstat (limited to 'features/hud/index.js')
-rw-r--r-- | features/hud/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/hud/index.js b/features/hud/index.js index 61bc687..661509a 100644 --- a/features/hud/index.js +++ b/features/hud/index.js @@ -215,7 +215,7 @@ class Hud extends Feature { } - this.showDragonDamages = new ToggleSetting("Show dragon damages", "This will render the top 3 damages + your damage during a dragon fight", true, "dragon_dmg_enable", this).requires(this.soulflowEnabledSetting) + this.showDragonDamages = new ToggleSetting("Show dragon damages", "This will render the top 3 damages + your damage during a dragon fight", true, "dragon_dmg_enable", this) this.dragonDamageElement = new HudTextElement() .setToggleSetting(this.showDragonDamages) .setLocationSetting(new LocationSetting("Damage Location", "Allows you to edit the location of the damage leaderboard", "dragon_dmg_location", this, [50, 40, 1, 1]) |