From b9bcea96e6bc82f42cefa888b7618a7a4035a236 Mon Sep 17 00:00:00 2001 From: calwolfson Date: Tue, 24 Dec 2024 09:16:27 -0500 Subject: [PATCH] nopo said this had to be done idk --- .../hannibal2/skyhanni/api/enoughupdates/ItemResolutionQuery.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/api/enoughupdates/ItemResolutionQuery.kt b/src/main/java/at/hannibal2/skyhanni/api/enoughupdates/ItemResolutionQuery.kt index e2fb05a282a5..8663dff678aa 100644 --- a/src/main/java/at/hannibal2/skyhanni/api/enoughupdates/ItemResolutionQuery.kt +++ b/src/main/java/at/hannibal2/skyhanni/api/enoughupdates/ItemResolutionQuery.kt @@ -64,7 +64,7 @@ class ItemResolutionQuery { if (isPet) { val matcher: Matcher = petPattern.matcher(itemName) if (matcher.matches()) { - itemName = itemName.replace(matcher.group(1), "") + itemName = itemName.replace(matcher.group(1), "").replace("✦", "").trim() petRarity = matcher.group(2) } }