Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/repo-patterns' into repo-patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
catgirlseraid committed May 19, 2024
2 parents 02a12c3 + 286100b commit 3192176
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class BingoCardReader {
description = description.substring(2)
}

val done = lore.any { goalReachedPattern.matches(it) }
val done = lore.any { goalReachedPattern.find(it) }
val communtyGoalPercentage = readCommuntyGoalPercentage(lore)
val hiddenGoalData = getHiddenGoalData(name, description, goalType)
val visualDescription = hiddenGoalData.tipNote
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class BingoNextStepHelper {
)
private val npcMessagePattern by patternGroup.pattern(
"crystal.npcmessage",
"§e[NPC] §dRhys§f: §rThank you for the items!§r"
"§e\\[NPC] §dRhys§f: §rThank you for the items!§r"
)

private val itemIslandRequired = mutableMapOf<String, IslandVisitStep>()
Expand Down

0 comments on commit 3192176

Please sign in to comment.