aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at
diff options
context:
space:
mode:
authorPhoebe <77941535+catgirlseraid@users.noreply.github.com>2024-10-27 06:19:12 +1300
committerGitHub <noreply@github.com>2024-10-26 19:19:12 +0200
commit69e74cce8912fe00dac3120b465f413870ec2526 (patch)
tree45dafcff85ebd95d8f67be6e54c0f4d740ea96af /src/main/java/at
parent742d175b2f9d103e7af8adf2aee11882be3107b8 (diff)
downloadSkyHanni-69e74cce8912fe00dac3120b465f413870ec2526.tar.gz
SkyHanni-69e74cce8912fe00dac3120b465f413870ec2526.tar.bz2
SkyHanni-69e74cce8912fe00dac3120b465f413870ec2526.zip
Fix: update dungeon potion regex (#2825)
Diffstat (limited to 'src/main/java/at')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt
index e8cd7cdae..97a5a5737 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/ItemDisplayOverlayFeatures.kt
@@ -78,9 +78,14 @@ object ItemDisplayOverlayFeatures {
"harvest",
"§7§7You may harvest §6(?<amount>.).*",
)
+
+ /**
+ * REGEX-TEST: Dungeon VII Potion
+ * REGEX-TEST: Dungeon VII Potion x1
+ */
private val dungeonPotionPattern by patternGroup.pattern(
"dungeonpotion",
- "Dungeon (?<level>.*) Potion",
+ "Dungeon (?<level>.*) Potion(?: x1)?",
)
private val bingoGoalRankPattern by patternGroup.pattern(
"bingogoalrank",