diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-07 09:04:31 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-04-07 09:04:31 +0200 |
commit | 9b2b9732939449ad5324c0169e0db23e0313bd3f (patch) | |
tree | c987c04e35839a90e27ce891d73cb7e80e27d368 | |
parent | 4a8c73847cfdd3cc6268eec25ce32a6c5d5e456e (diff) | |
download | skyhanni-9b2b9732939449ad5324c0169e0db23e0313bd3f.tar.gz skyhanni-9b2b9732939449ad5324c0169e0db23e0313bd3f.tar.bz2 skyhanni-9b2b9732939449ad5324c0169e0db23e0313bd3f.zip |
code cleanup
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt | 2 |
1 files changed, 1 insertions, 1 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 7607ca48f..80d4a48d2 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonCopilot.kt @@ -75,7 +75,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.dungeonFloor == "E") { + if (DungeonAPI.getCurrentBoss() == DungeonAPI.DungeonFloor.ENTRANCE) { changeNextStep("") } else { changeNextStep("Enter Boss Room") |