From eb565f975abd394aa7b43bea00c8df219e7831d3 Mon Sep 17 00:00:00 2001 From: Linnea Gräf Date: Wed, 15 Oct 2025 00:29:06 +0200 Subject: feat: add ids to enchantment guide books --- src/main/kotlin/util/skyblock/ScreenIdentification.kt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/main/kotlin/util/skyblock') diff --git a/src/main/kotlin/util/skyblock/ScreenIdentification.kt b/src/main/kotlin/util/skyblock/ScreenIdentification.kt index 7ddc481..4fea3df 100644 --- a/src/main/kotlin/util/skyblock/ScreenIdentification.kt +++ b/src/main/kotlin/util/skyblock/ScreenIdentification.kt @@ -20,6 +20,10 @@ fun Screen.isBazaarUi(): Boolean { }) } +fun Screen.isEnchantmentGuide(): Boolean { + return title.unformattedString.endsWith("Enchantments Guide") +} + fun Screen.isSuperPairs(): Boolean { return title.unformattedString.startsWith("Superpairs") } -- cgit