Skip to content

Commit

Permalink
fix pattern (#979)
Browse files Browse the repository at this point in the history
Fixed powder mining start/end detection in Powder Tracker. #979
  • Loading branch information
CalMWolfs authored Feb 5, 2024
1 parent 03ce43d commit 146c0be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ object PowderTracker {
)
private val powderStartedPattern by patternGroup.pattern(
"powder.started",
".*§r§b§l2X POWDER ENDED!.*"
".*§r§b§l2X POWDER STARTED!.*"
)
private val powderEndedPattern by patternGroup.pattern(
"powder.ended",
".*§r§b§l2X POWDER STARTED!.*"
".*§r§b§l2X POWDER ENDED!.*"
)
private val powderBossBarPattern by patternGroup.pattern(
"powder.bossbar",
Expand Down

0 comments on commit 146c0be

Please sign in to comment.