From 8fc46b4e838dcf0fda4b7a029ec147edbc2af4d3 Mon Sep 17 00:00:00 2001 From: Empa <42304516+ItsEmpa@users.noreply.github.com> Date: Sun, 17 Mar 2024 18:41:10 +0100 Subject: Fix: Dungeon Complete Event not getting triggered on Entrance (#1202) --- src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt index 7b5afb875..7d10c0cf4 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt @@ -55,7 +55,7 @@ class DungeonAPI { private val dungeonComplete by patternGroup.pattern( "complete", - "§.\\s+§.§.(?:The|Master Mode) Catacombs §.§.- §.§.Floor (?M?[IV]{1,3}|Entrance)" + "§.\\s+§.§.(?:The|Master Mode) Catacombs §.§.- §.§.(?:Floor )?(?M?[IV]{1,3}|Entrance)" ) fun inDungeon() = dungeonFloor != null -- cgit