From 7b329087dc47842e2a8337e650e6c037230da7ba Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 2 Feb 2023 20:41:21 +0100 Subject: Shark fishing timer fix and other misc stuff. --- src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCleanEnd.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/dungeon') diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCleanEnd.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCleanEnd.kt index ffbbb3085..49673a208 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCleanEnd.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCleanEnd.kt @@ -63,7 +63,7 @@ class DungeonCleanEnd { if (lastBossId == -1) return if (event.entity.entityId != lastBossId) return - if (event.health < 1) { + if (event.health <= 0) { val dungeonFloor = DungeonData.dungeonFloor LorenzUtils.chat("§eFloor $dungeonFloor done!") bossDone = true -- cgit