From 8ee5f995514262a42ac210f8e082de198a609812 Mon Sep 17 00:00:00 2001 From: martimavocado <39881008+martimavocado@users.noreply.github.com> Date: Fri, 3 May 2024 11:16:20 +0100 Subject: Fix: Dungeon Copilot in Entrance floor (#1656) --- src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt | 2 +- src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFloor.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/dungeon') diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt index 1528fe150..fb2fac87d 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt @@ -86,7 +86,7 @@ class DungeonCopilot { if (message == "§c[BOSS] The Watcher§r§f: That will be enough for now.") changeNextStep("Clear Blood Room") if (message == "§c[BOSS] The Watcher§r§f: You have proven yourself. You may pass.") { - if (DungeonAPI.getCurrentBoss() == DungeonFloor.ENTRANCE) { + if (DungeonAPI.getCurrentBoss() == DungeonFloor.E) { changeNextStep("") } else { changeNextStep("Enter Boss Room") diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFloor.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFloor.kt index 5bb2ae0c2..9fdbdedba 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFloor.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFloor.kt @@ -1,7 +1,7 @@ package at.hannibal2.skyhanni.features.dungeon enum class DungeonFloor(private val bossName: String) { - ENTRANCE("The Watcher"), + E("The Watcher"), F1("Bonzo"), F2("Scarf"), F3("The Professor"), -- cgit