diff options
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt b/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt index 79c713b87..504b3ae21 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt @@ -22,10 +22,18 @@ object SeaCreatureManager { private val patternGroup = RepoPattern.group("fishing.seacreature") + /** + * REGEX-TEST: §eIt's a §r§aDouble Hook§r§e! Woot woot! + * REGEX-TEST: §eIt's a §r§aDouble Hook§r§e! + */ private val doubleHookPattern by patternGroup.pattern( "doublehook", "§eIt's a §r§aDouble Hook§r§e!(?: Woot woot!)?" ) + + /** + * REGEX-TEST: §e> Your bottle of thunder has fully charged! + */ private val thunderBottleChargedPattern by patternGroup.pattern( "thundercharged", "§e> Your bottle of thunder has fully charged!" |