aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-16 14:37:47 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2022-09-16 14:37:47 +0200
commitfb04bfb0af39773dd3d60ba9a0a98fa57e6f4efb (patch)
treedfd0f00f513f37d268cd8a3af10c881b592edc8f /src/main/java/at/hannibal2/skyhanni/config
parentef0f75d0f85b2e68a4588ebccc107dadaec41fce (diff)
downloadskyhanni-fb04bfb0af39773dd3d60ba9a0a98fa57e6f4efb.tar.gz
skyhanni-fb04bfb0af39773dd3d60ba9a0a98fa57e6f4efb.tar.bz2
skyhanni-fb04bfb0af39773dd3d60ba9a0a98fa57e6f4efb.zip
add Hide Healer Fairy and optimize wording
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java16
1 files changed, 11 insertions, 5 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 78fec2ed9..6cc58f211 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
@@ -16,7 +16,7 @@ public class Dungeon {
public boolean showMilestone = false;
@Expose
- @ConfigOption(name = "Milestones Display", desc = "Show the current milestone in the Dungeon.")
+ @ConfigOption(name = "Milestones Display", desc = "Show the current milestone in dungeon.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean showMilestonesDisplay = false;
@@ -70,9 +70,9 @@ public class Dungeon {
@ConfigEditorBoolean
public boolean highlightDeathmites = false;
- @ConfigOption(name = "Item Hider", desc = "")
+ @ConfigOption(name = "Object Hider", desc = "Hide various things in dungeon.")
@ConfigEditorAccordion(id = 3)
- public boolean itemHider = false;
+ public boolean objectHider = false;
@Expose
@ConfigOption(name = "Hide Superboom TNT", desc = "Hide Superboom TNT laying around in dungeon.")
@@ -105,17 +105,23 @@ public class Dungeon {
public boolean hideJournalEntry = false;
@Expose
- @ConfigOption(name = "Hide Skeleton Skull", desc = "Hide Skeleton Skulls laying around in dungeon.")
+ @ConfigOption(name = "Hide Skeleton Skull", desc = "Hide skeleton skulls laying around in dungeon.")
@ConfigEditorBoolean
@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")
+ @ConfigOption(name = "Hide Healer Orbs", desc = "Hides the damage, ability damage and defensive orbs that spawn when the healer kills mobs.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 3)
public boolean hideHealerOrbs = false;
+ @Expose
+ @ConfigOption(name = "Hide Healer Fairy", desc = "Hide the golden fairy that follows the healer in dungeon.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 3)
+ public boolean hideHealerFairy = false;
+
@ConfigOption(name = "Message Filter", desc = "")
@ConfigEditorAccordion(id = 4)
public boolean messageFilter = false;