diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 20:56:01 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-08-28 20:56:01 +0200 |
commit | f35bd4d291e1440367f8c2532d5988356fff5d0b (patch) | |
tree | 3211535c079fefdb8e8e4baccdf8859f20e164be /src/main/java | |
parent | 703b97a2b49cd68eef036e6965ca78547d460d93 (diff) | |
download | skyhanni-f35bd4d291e1440367f8c2532d5988356fff5d0b.tar.gz skyhanni-f35bd4d291e1440367f8c2532d5988356fff5d0b.tar.bz2 skyhanni-f35bd4d291e1440367f8c2532d5988356fff5d0b.zip |
Now ignoring correctly the minis from arachne tier 2 in damage indicator.
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt b/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt index 0cb2c9b14..4194c015e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt @@ -384,7 +384,7 @@ class MobFinder { entity.hasNameTagWith(1, "[§7Lv500§8] §lArachne") ) { val maxHealth = entity.baseMaxHealth - if (maxHealth == 12 || maxHealth.derpy() == 4000) return null + if (maxHealth == 12 || maxHealth.derpy() == 20_000) return null return EntityResult(bossType = BossType.ARACHNE_BIG) } |