aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt8
1 files changed, 4 insertions, 4 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 93efa204f..fcaddf487 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt
@@ -60,11 +60,11 @@ object DungeonFinderFeatures {
/**
* REGEX-TEST: The Catacombs
- * REGEX-TEST: Master Mode The Catacombs
+ * REGEX-TEST: MM The Catacombs
*/
private val floorTypePattern by patternGroup.pattern(
"floor.type",
- "(The Catacombs).*|.*(Master Mode The Catacombs).*",
+ "(The Catacombs).*|.*(MM The Catacombs).*",
)
private val checkIfPartyPattern by patternGroup.pattern(
"check.if.party",
@@ -97,11 +97,11 @@ object DungeonFinderFeatures {
/**
* REGEX-TEST: Master Mode The Catacombs
- * REGEX-TEST: The Catacombs
+ * REGEX-TEST: MM The Catacombs
*/
private val masterModeFloorPattern by patternGroup.pattern(
"floor.mastermode",
- "(MM )|(.*Master Mode The Catacombs)"
+ "(MM|.*Master Mode) The Catacombs.*"
)
private val dungeonFloorPattern by patternGroup.pattern(
"floor.dungeon",