From 66e1d1ff31a32532a301eeefa0f592c0fb3ad703 Mon Sep 17 00:00:00 2001 From: NopoTheGamer <40329022+NopoTheGamer@users.noreply.github.com> Date: Fri, 9 Aug 2024 00:03:22 +1000 Subject: fix pet regex (#2312) --- src/main/java/at/hannibal2/skyhanni/data/PetAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/java/at/hannibal2/skyhanni/data/PetAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/PetAPI.kt index dfe57cc5c..d79320603 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/PetAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/PetAPI.kt @@ -23,7 +23,7 @@ object PetAPI { ) private val neuRepoPetItemName by patternGroup.pattern( "item.name.neu.format", - "(?:§f§f)?§7\\[Lvl 1➡(?:100|200)] (?.*)", + "(?:§f§f)?§7\\[Lvl (?:1➡(?:100|200)|\\{LVL})] (?.*)", ) private val ignoredPetStrings = listOf( -- cgit