From 39f46e73324b2e8ee0d8971e60588afb143f1fdc Mon Sep 17 00:00:00 2001 From: Empa <42304516+ItsEmpa@users.noreply.github.com> Date: Sun, 21 Jul 2024 12:15:45 +0200 Subject: Backend: RegexUtils deprecation and new functions (#2160) --- src/main/java/at/hannibal2/skyhanni/data/HotmData.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/data') diff --git a/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt b/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt index 2d8ea9457..c484f2ca9 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt @@ -567,7 +567,7 @@ enum class HotmData( } entry.enabled = lore.any { enabledPattern.matches(it) } - if (entry == SKY_MALL) handelSkyMall(lore) + if (entry == SKY_MALL) handleSkyMall(lore) } private fun Slot.handlePowder(): Boolean { @@ -620,10 +620,10 @@ enum class HotmData( "§aYour Current Effect", ) - private fun handelSkyMall(lore: List) { + private fun handleSkyMall(lore: List) { if (!SKY_MALL.enabled || !SKY_MALL.isUnlocked) HotmAPI.skymall = null else { - val index = lore.indexOfFirstMatch(skyMallCurrentEffect) ?: run { + val index = skyMallCurrentEffect.indexOfFirstMatch(lore) ?: run { ErrorManager.logErrorStateWithData( "Could not read the skymall effect from the hotm tree", "skyMallCurrentEffect didn't match", -- cgit