diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fcf7d231..414144b35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ ### Fixes + Fixed steaming hot flounder in custom trophy fish counter. + Fixed hide powder gain message from chests in crystal hollows. (thanks hypixel) ++ Fixed damage indicator for M3 Professor bug. (Thanks hypixel) ## Version 0.14 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 4ce145b96..8a1380d59 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/damageindicator/MobFinder.kt @@ -426,7 +426,7 @@ class MobFinder { floor3GuardianShield = false } - "§c[BOSS] The Professor§r§f: Oh? You found my Guardians one weakness?" -> { + "§c[BOSS] The Professor§r§f: Oh? You found my Guardians' one weakness?" -> { floor3Professor = true floor3ProfessorSpawnTime = System.currentTimeMillis() + 10_300 } |