aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-08-07 03:35:42 +0200
committerLorenz <lo.scherf@gmail.com>2022-08-07 03:35:42 +0200
commit336266ad88396d8df795f7a429174c5a010c1658 (patch)
tree8f74b66b4bfea3feb4603f0e631344a126e43d41 /src/main/java/at/hannibal2/skyhanni/config
parentbbe0216a3ace0781e06215a96428bb4b027e9730 (diff)
downloadskyhanni-336266ad88396d8df795f7a429174c5a010c1658.tar.gz
skyhanni-336266ad88396d8df795f7a429174c5a010c1658.tar.bz2
skyhanni-336266ad88396d8df795f7a429174c5a010c1658.zip
moved damage indicator classes outside of dungeon
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java5
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Misc.java5
2 files changed, 5 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 8217c71a9..7be3f6902 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Dungeon.java
@@ -14,11 +14,6 @@ public class Dungeon {
public boolean highlightClickedBlocks = false;
@Expose
- @ConfigOption(name = "Boss Damage Indicator", desc = "Show the missing health of a boss in the dungeon and the cooldown time until the boss becomes attackable.")
- @ConfigEditorBoolean
- public boolean bossDamageIndicator = false;
-
- @Expose
@ConfigOption(name = "Milestone Display", desc = "Show the current milestone inside Dungeons.")
@ConfigEditorBoolean
public boolean showMilestoneDisplay = false;
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
index 82268e2aa..dcaf6a259 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java
@@ -9,6 +9,11 @@ import com.google.gson.annotations.Expose;
public class Misc {
@Expose
+ @ConfigOption(name = "Boss Damage Indicator", desc = "Show the missing health of a boss in the dungeon, of slayer bosses and other bosses and the cooldown time until the boss becomes attackable.")
+ @ConfigEditorBoolean
+ public boolean bossDamageIndicator = false;
+
+ @Expose
@ConfigOption(name = "Pet Display", desc = "Show the currently active pet.")
@ConfigEditorBoolean
public boolean petDisplay = false;