summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-21 21:03:48 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-21 21:03:48 +0100
commit0e0cfa64115c1bd05cbc09c1d354a95972cb9743 (patch)
tree3a0871287eb83824dae7b330609aa125addc015f /src/main/java/at/hannibal2/skyhanni/config/features
parent3bc18d545a395eb5a7d045d5163b51b2bc9a3278 (diff)
downloadskyhanni-0e0cfa64115c1bd05cbc09c1d354a95972cb9743.tar.gz
skyhanni-0e0cfa64115c1bd05cbc09c1d354a95972cb9743.tar.bz2
skyhanni-0e0cfa64115c1bd05cbc09c1d354a95972cb9743.zip
Gave Damage Indicator mobs correct names in floor 1, 2, 3 and 6. (Removed "Generic Dungeon Boss")
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/combat/damageindicator/DamageIndicatorConfig.java4
1 files changed, 1 insertions, 3 deletions
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<BossCategory> 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