diff options
| author | Lorenz <lo.scherf@gmail.com> | 2022-09-12 00:01:31 +0200 |
|---|---|---|
| committer | Lorenz <lo.scherf@gmail.com> | 2022-09-12 00:01:31 +0200 |
| commit | 9d690cc976046e6d5defc404eb73386a1990e2db (patch) | |
| tree | dc3a1f86ae8fa46d520567a668dbff2be181a9ac /src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java | |
| parent | 04e3286c57ff08ddd102d7100b96777bd6a00b8c (diff) | |
| download | SkyHanni-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.java | 18 |
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; +} |
