From 860aec3a996090ff8a294cd19cbfe129dd8e5c34 Mon Sep 17 00:00:00 2001 From: Fazfoxy <78978526+Fazfoxy@users.noreply.github.com> Date: Sun, 18 Aug 2024 21:36:46 +0100 Subject: Fix Master Mode Stack Sizes in Mort #2316 (#2378) --- .../hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni') 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", -- cgit