diff options
author | martimavocado <39881008+martimavocado@users.noreply.github.com> | 2024-05-03 11:16:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-03 12:16:20 +0200 |
commit | 8ee5f995514262a42ac210f8e082de198a609812 (patch) | |
tree | 801eebca9e563bb9555acf4c813ef3262648b297 | |
parent | 4a2ac4ca162d846dcc9a2a3227f963321fa4e22a (diff) | |
download | skyhanni-8ee5f995514262a42ac210f8e082de198a609812.tar.gz skyhanni-8ee5f995514262a42ac210f8e082de198a609812.tar.bz2 skyhanni-8ee5f995514262a42ac210f8e082de198a609812.zip |
Fix: Dungeon Copilot in Entrance floor (#1656)
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt | 2 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFloor.kt | 2 |
2 files changed, 2 insertions, 2 deletions
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"), |