aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-24 17:34:31 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-24 17:34:31 +0200
commit30e53506fbd4ae9c914caaa15fcb4a78688c710a (patch)
tree12c9bc42bba58c6fb4a6f166bc70bfa7933b172c /src/main
parent5a27b130466c5e3d274058a42d4159b25097b381 (diff)
downloadskyhanni-30e53506fbd4ae9c914caaa15fcb4a78688c710a.tar.gz
skyhanni-30e53506fbd4ae9c914caaa15fcb4a78688c710a.tar.bz2
skyhanni-30e53506fbd4ae9c914caaa15fcb4a78688c710a.zip
no one will ever see this.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt2
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 0de593107..03f10e333 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt
@@ -252,7 +252,7 @@ class MobFinder {
if (entity.hasNameTagWith(3, "§c☠ §bVoidgloom Seraph ")) {
when {
entity.hasMaxHealth(300_000, true) -> return EntityResult(bossType = BossType.SLAYER_ENDERMAN_1)
- entity.hasMaxHealth(12_000_000, true -> return EntityResult(bossType = BossType.SLAYER_ENDERMAN_2)
+ entity.hasMaxHealth(12_000_000, true) -> return EntityResult(bossType = BossType.SLAYER_ENDERMAN_2)
entity.hasMaxHealth(50_000_000, true) -> return EntityResult(bossType = BossType.SLAYER_ENDERMAN_3)
entity.hasMaxHealth(210_000_000, true) -> return EntityResult(bossType = BossType.SLAYER_ENDERMAN_4)
}