diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-10-01 18:00:11 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-10-01 18:00:11 +0200 |
commit | ad998ebd56c43097154d970e2f34898a53d6444d (patch) | |
tree | 25b4668de2a32e4a30e080f6cfe268907643419c /src/main/java/at/hannibal2/skyhanni/config | |
parent | 10789e74936e192f577eb73a568d78b5d8752205 (diff) | |
download | skyhanni-ad998ebd56c43097154d970e2f34898a53d6444d.tar.gz skyhanni-ad998ebd56c43097154d970e2f34898a53d6444d.tar.bz2 skyhanni-ad998ebd56c43097154d970e2f34898a53d6444d.zip |
hide vanilla names near damage indicator
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java index 9a3bcdc87..c8a9dd750 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicator.java @@ -25,7 +25,7 @@ public class DamageIndicator { @Expose @ConfigOption( name = "Boss Name", - desc = "Change how the boss name should be displayed") + desc = "Change how the boss name should be displayed.") @ConfigEditorDropdown(values = {"Disabled", "Full Name", "Short Name"}) public int bossName = 1; @@ -63,17 +63,22 @@ public class DamageIndicator { public List<Integer> bossesToShow = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 6, 7, 8, 9, 18, 19)); @Expose - @ConfigOption(name = "Hide Damage Splash", desc = "Hiding damage splashes near the damage indicator") + @ConfigOption(name = "Hide Damage Splash", desc = "Hiding damage splashes near the damage indicator.") @ConfigEditorBoolean public boolean hideDamageSplash = false; @Expose - @ConfigOption(name = "Damage Over Time", desc = "Show damage and health over time below the damage indicator") + @ConfigOption(name = "Damage Over Time", desc = "Show damage and health over time below the damage indicator.") @ConfigEditorBoolean public boolean showDamageOverTime = false; @Expose - @ConfigOption(name = "Health During Laser", desc = "Show the health of Voidgloom Seraph 4 during the laser phase") + @ConfigOption(name = "Health During Laser", desc = "Show the health of Voidgloom Seraph 4 during the laser phase.") @ConfigEditorBoolean public boolean showHealthDuringLaser = false; + + @Expose + @ConfigOption(name = "Hide Nametag", desc = "Hide the vanilla nametag of damage indicator bosses.") + @ConfigEditorBoolean + public boolean hideVanillaNametag = false; } |