diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-09-14 09:30:30 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-09-14 09:30:30 +0200 |
commit | 1e059c76d85cbe045dcd44b95f32bd3f61d83f2b (patch) | |
tree | 46da5c788a11c0e420721095aed1203c608ad71b /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 9617551b8a25c007a259ef342552ef5fa9f3aafc (diff) | |
download | skyhanni-1e059c76d85cbe045dcd44b95f32bd3f61d83f2b.tar.gz skyhanni-1e059c76d85cbe045dcd44b95f32bd3f61d83f2b.tar.bz2 skyhanni-1e059c76d85cbe045dcd44b95f32bd3f61d83f2b.zip |
add Hide Mob Names and Hide Damage Splash
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Misc.java | 5 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java | 5 |
2 files changed, 10 insertions, 0 deletions
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 6fa5b8b2d..d8b08a0ec 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Misc.java @@ -52,4 +52,9 @@ public class Misc { @ConfigOption(name = "Corrupted Mob Highlight", desc = "Highlight corrupted mobs in purple color") @ConfigEditorBoolean public boolean corruptedMobHighlight = false; + + @Expose + @ConfigOption(name = "Hide Damage Splash", desc = "Hide all damage splashes, from anywhere in Skyblock.") + @ConfigEditorBoolean + public boolean hideDamageSplash = false; }
\ No newline at end of file diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java index cac13b109..e401b463f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Slayer.java @@ -15,4 +15,9 @@ public class Slayer { @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; + + @Expose + @ConfigOption(name = "Hide Mob Names", desc = "Hide the name of the mobs you need to kill in order for the Slayer boss to spawn. Exclude mobs that are damaged, corrupted, runic or semi rare.") + @ConfigEditorBoolean + public boolean hideMobNames = false; } |