From 0b9eb5560844675e44ef794aa8cf5dd40fdf6ee0 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 21 Dec 2023 02:16:30 +0100 Subject: Dungeon party finder highlight features now work outside Dungeon Hub as well. --- .../at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') 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 -- cgit