diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-29 14:53:39 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-29 14:53:39 +0200 |
commit | 957c42dfbc17c9d812a14036cf532237578ff848 (patch) | |
tree | ed7c7c56a1a01d1f4bf9c574a5ab3d71d2da035c /src/main/java/at/hannibal2/skyhanni/config | |
parent | cc59cccadf38cb263d5c035ac4f0b74d9adfe1ca (diff) | |
download | skyhanni-957c42dfbc17c9d812a14036cf532237578ff848.tar.gz skyhanni-957c42dfbc17c9d812a14036cf532237578ff848.tar.bz2 skyhanni-957c42dfbc17c9d812a14036cf532237578ff848.zip |
Added Raindrake support to Damage Indicator.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java index d1f522a9e..a6b8e7db0 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DamageIndicatorConfig.java @@ -56,11 +56,12 @@ public class DamageIndicatorConfig { "Dummy", "§bArachne", "§bThe Rift Bosses", - "§bRiftstalker Bloodfiend" + "§bRiftstalker Bloodfiend", + "§6Raindrake" } ) //TODO only show currently working and tested features - public List<Integer> bossesToShow = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 6, 7, 8, 9, 18, 19, 21, 22, 23)); + public List<Integer> bossesToShow = new ArrayList<>(Arrays.asList(0, 1, 2, 5, 6, 7, 8, 9, 18, 19, 21, 22, 23, 24)); @Expose @ConfigOption(name = "Hide Damage Splash", desc = "Hiding damage splashes near the damage indicator.") |