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 +- .../java/at/hannibal2/skyhanni/features/fishing/SharkFishCounter.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') 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 diff --git a/src/main/java/at/hannibal2/skyhanni/features/fishing/SharkFishCounter.kt b/src/main/java/at/hannibal2/skyhanni/features/fishing/SharkFishCounter.kt index 30ee3f8eb..439dcd940 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/fishing/SharkFishCounter.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/fishing/SharkFishCounter.kt @@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.gameevent.TickEvent class SharkFishCounter { private var counter = 0 - private var display = "$counter sharks caught" + private var display = "" private var tick = 0 private var hasWaterRodInHand = false -- cgit