summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt7
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/CurrentPetDisplay.kt3
2 files changed, 3 insertions, 7 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt
index f93192a3d..d8fd9f13d 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/fortuneguide/CaptureFarmingGear.kt
@@ -1,6 +1,7 @@
package at.hannibal2.skyhanni.features.garden.fortuneguide
import at.hannibal2.skyhanni.config.Storage
+import at.hannibal2.skyhanni.data.PetAPI
import at.hannibal2.skyhanni.data.ProfileStorageData
import at.hannibal2.skyhanni.events.GardenToolChangeEvent
import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent
@@ -49,10 +50,6 @@ class CaptureFarmingGear {
"uniquevisitors.tierprogress",
".* §e(?<having>.*)§6/(?<total>.*)"
)
- private val petMenuPattern by patternGroup.pattern(
- "petsmenu",
- "Pets(?: \\(\\d+/\\d+\\) )?"
- )
companion object {
private val strengthPattern = " Strength: §r§c❁(?<strength>.*)".toPattern()
@@ -131,7 +128,7 @@ class CaptureFarmingGear {
val farmingItems = farmingItems ?: return
val outdatedItems = outdatedItems ?: return
val items = event.inventoryItems
- petMenuPattern.matchMatcher(event.inventoryName) {
+ if (PetAPI.isPetMenu(event.inventoryName)) {
pets(farmingItems, items, outdatedItems)
return
}
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/CurrentPetDisplay.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/CurrentPetDisplay.kt
index d4cc01fbd..ebff243f9 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/CurrentPetDisplay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/CurrentPetDisplay.kt
@@ -18,7 +18,6 @@ class CurrentPetDisplay {
private val config get() = SkyHanniMod.feature.misc.pets
// TODO USE SH-REPO
- private val inventoryNamePattern = "Pets( \\(\\d+/\\d+\\) )?".toPattern()
private val inventorySelectedPetPattern = "§7§7Selected pet: (?<pet>.*)".toPattern()
private val chatSpawnPattern = "§aYou summoned your §r(?<pet>.*)§r§a!".toPattern()
private val chatDespawnPattern = "§aYou despawned your §r.*§r§a!".toPattern()
@@ -50,7 +49,7 @@ class CurrentPetDisplay {
@SubscribeEvent
fun onInventoryOpen(event: InventoryFullyOpenedEvent) {
- if (!inventoryNamePattern.matches(event.inventoryName)) return
+ if (!PetAPI.isPetMenu(event.inventoryName)) return
val lore = event.inventoryItems[4]?.getLore() ?: return
for (line in lore) {