From 0e0cfa64115c1bd05cbc09c1d354a95972cb9743 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 21 Jan 2024 21:03:48 +0100 Subject: Gave Damage Indicator mobs correct names in floor 1, 2, 3 and 6. (Removed "Generic Dungeon Boss") --- .../config/features/combat/damageindicator/DamageIndicatorConfig.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java index 69cae8a78..e7650b9eb 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java @@ -15,7 +15,6 @@ import java.util.List; import static at.hannibal2.skyhanni.config.features.combat.damageindicator.DamageIndicatorConfig.BossCategory.ARACHNE; import static at.hannibal2.skyhanni.config.features.combat.damageindicator.DamageIndicatorConfig.BossCategory.DIANA_MOBS; -import static at.hannibal2.skyhanni.config.features.combat.damageindicator.DamageIndicatorConfig.BossCategory.DUNGEON_ALL; import static at.hannibal2.skyhanni.config.features.combat.damageindicator.DamageIndicatorConfig.BossCategory.GARDEN_PESTS; import static at.hannibal2.skyhanni.config.features.combat.damageindicator.DamageIndicatorConfig.BossCategory.INFERNO_DEMONLORD; import static at.hannibal2.skyhanni.config.features.combat.damageindicator.DamageIndicatorConfig.BossCategory.NETHER_MINI_BOSSES; @@ -87,7 +86,6 @@ public class DamageIndicatorConfig { @ConfigEditorDraggableList() //TODO only show currently working and tested features public List bossesToShow = new ArrayList<>(Arrays.asList( - DUNGEON_ALL, NETHER_MINI_BOSSES, VANQUISHER, REVENANT_HORROR, @@ -106,7 +104,6 @@ public class DamageIndicatorConfig { )); public enum BossCategory implements HasLegacyId { - DUNGEON_ALL("§bDungeon All", 0), NETHER_MINI_BOSSES("§bNether Mini Bosses", 1), VANQUISHER("§bVanquisher", 2), ENDERSTONE_PROTECTOR("§bEndstone Protector (not tested)", 3), @@ -157,6 +154,7 @@ public class DamageIndicatorConfig { return str; } } + @Expose @ConfigOption(name = "Hide Damage Splash", desc = "Hiding damage splashes near the damage indicator.") @ConfigEditorBoolean -- cgit