aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-09-12 00:01:31 +0200
committerLorenz <lo.scherf@gmail.com>2022-09-12 00:01:31 +0200
commit9d690cc976046e6d5defc404eb73386a1990e2db (patch)
treedc3a1f86ae8fa46d520567a668dbff2be181a9ac /src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
parent04e3286c57ff08ddd102d7100b96777bd6a00b8c (diff)
downloadSkyHanni-9d690cc976046e6d5defc404eb73386a1990e2db.tar.gz
SkyHanni-9d690cc976046e6d5defc404eb73386a1990e2db.tar.bz2
SkyHanni-9d690cc976046e6d5defc404eb73386a1990e2db.zip
edited features order and made better wording
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
new file mode 100644
index 000000000..cac13b109
--- /dev/null
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java
@@ -0,0 +1,18 @@
+package at.hannibal2.skyhanni.config.features;
+
+import at.hannibal2.skyhanni.config.core.config.annotations.ConfigEditorBoolean;
+import at.hannibal2.skyhanni.config.core.config.annotations.ConfigOption;
+import com.google.gson.annotations.Expose;
+
+public class Slayer {
+
+ @Expose
+ @ConfigOption(name = "Slayer Miniboss Highlight", desc = "Highlight slayer miniboss in blue color")
+ @ConfigEditorBoolean
+ public boolean slayerMinibossHighlight = false;
+
+ @Expose
+ @ConfigOption(name = "Slayer Enderman Beacon", desc = "Highlight the enderman slayer Yang Glyph (Beacon) in red color (supports beacon in hand and beacon flying)")
+ @ConfigEditorBoolean
+ public boolean slayerEndermanBeacon = false;
+}