diff options
author | Fazfoxy <78978526+Fazfoxy@users.noreply.github.com> | 2024-08-18 21:36:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-18 22:36:46 +0200 |
commit | 860aec3a996090ff8a294cd19cbfe129dd8e5c34 (patch) | |
tree | 7b45ccf6b16120cf98989f91fd8b210547fea43d /src/main/java/at/hannibal2 | |
parent | aa05bcad0b9bac317ee8487ea5ca18acad3d1b81 (diff) | |
download | skyhanni-860aec3a996090ff8a294cd19cbfe129dd8e5c34.tar.gz skyhanni-860aec3a996090ff8a294cd19cbfe129dd8e5c34.tar.bz2 skyhanni-860aec3a996090ff8a294cd19cbfe129dd8e5c34.zip |
Fix Master Mode Stack Sizes in Mort #2316 (#2378)
Diffstat (limited to 'src/main/java/at/hannibal2')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt | 8 |
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", |