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 | 461f76abd020a95ca0f37b80a6db31b4ee2f60d4 (patch) | |
| tree | 46da5c788a11c0e420721095aed1203c608ad71b /src/main/java/at/hannibal2/skyhanni/config | |
| parent | 18747701448071968a9099a799b10540d71720d5 (diff) | |
| download | SkyHanni-461f76abd020a95ca0f37b80a6db31b4ee2f60d4.tar.gz SkyHanni-461f76abd020a95ca0f37b80a6db31b4ee2f60d4.tar.bz2 SkyHanni-461f76abd020a95ca0f37b80a6db31b4ee2f60d4.zip | |
add Hide Mob Names and Hide Damage Splash
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
| -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; } |
