Skip to content

Commit

Permalink
Fix: update dungeon potion regex (#2825)
Browse files Browse the repository at this point in the history
  • Loading branch information
catgirlseraid authored Oct 26, 2024
1 parent 742d175 commit 69e74cc
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 69e74cc

Please sign in to comment.