diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-16 14:11:26 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-09-16 14:11:26 +0200 |
commit | ef0f75d0f85b2e68a4588ebccc107dadaec41fce (patch) | |
tree | 310038d3acd5938bc53eace5af6d046a8d4dc579 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 272491d47670922a44c205f041832c25c7a818e6 (diff) | |
download | skyhanni-ef0f75d0f85b2e68a4588ebccc107dadaec41fce.tar.gz skyhanni-ef0f75d0f85b2e68a4588ebccc107dadaec41fce.tar.bz2 skyhanni-ef0f75d0f85b2e68a4588ebccc107dadaec41fce.zip |
add Hide Healer Orbs
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java index e32fefdcb..78fec2ed9 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java @@ -110,6 +110,12 @@ public class Dungeon { @ConfigAccordionId(id = 3) public boolean hideSkeletonSkull = false; + @Expose + @ConfigOption(name = "Hide Healer Orbs", desc = "Hide the damage, ability damage and defence orbs that spawn when the healer is killing mobs") + @ConfigEditorBoolean + @ConfigAccordionId(id = 3) + public boolean hideHealerOrbs = false; + @ConfigOption(name = "Message Filter", desc = "") @ConfigEditorAccordion(id = 4) public boolean messageFilter = false; |