aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-21 02:16:30 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-21 02:16:30 +0100
commit0b9eb5560844675e44ef794aa8cf5dd40fdf6ee0 (patch)
tree694855a962efbe0385624d8bb3de26540a4e8cde /src/main/java
parentabc12e38b28864f2b3aba213e651775ea4cc8f4e (diff)
downloadskyhanni-0b9eb5560844675e44ef794aa8cf5dd40fdf6ee0.tar.gz
skyhanni-0b9eb5560844675e44ef794aa8cf5dd40fdf6ee0.tar.bz2
skyhanni-0b9eb5560844675e44ef794aa8cf5dd40fdf6ee0.zip
Dungeon party finder highlight features now work outside Dungeon Hub as well.
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt
index a1fdc018e..0413be873 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt
@@ -92,7 +92,7 @@ class DungeonFinderFeatures {
@SubscribeEvent
fun onBackgroundDrawn(event: GuiContainerEvent.BackgroundDrawnEvent) {
- if (!LorenzUtils.inSkyBlock || LorenzUtils.skyBlockArea != "Dungeon Hub") return
+ if (!LorenzUtils.inSkyBlock) return
if (event.gui !is GuiChest) return
val chest = event.gui.inventorySlots as ContainerChest