Fix drill ability not being detected with ability scrolls

This commit is contained in:
Linnea Gräf
2024-10-07 14:46:09 +02:00
parent 709f5d59c5
commit a8d5fed7d2

View File

@@ -149,7 +149,7 @@ object PickaxeAbility : FirmamentFeature {
val cooldownPattern = Pattern.compile("Cooldown: (?<cooldown>$TIME_PATTERN)") val cooldownPattern = Pattern.compile("Cooldown: (?<cooldown>$TIME_PATTERN)")
val abilityPattern = Pattern.compile("Ability: (?<name>.*) {2}RIGHT CLICK") val abilityPattern = Pattern.compile("(⦾ )?Ability: (?<name>.*) {2}RIGHT CLICK")
val abilitySwitchPattern = val abilitySwitchPattern =
Pattern.compile("You selected (?<ability>.*) as your Pickaxe Ability\\. This ability will apply to all of your pickaxes!") Pattern.compile("You selected (?<ability>.*) as your Pickaxe Ability\\. This ability will apply to all of your pickaxes!")