diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-10-16 22:52:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-17 07:52:12 +1100 |
commit | f4fa81ebd56882bf25261427f3ca6672e2782e0b (patch) | |
tree | c1e291e42cd47eeac2868f29ff0df76c8034e8ad | |
parent | d7941ebf223837faadca8a911066411eca97cb7b (diff) | |
download | skyhanni-f4fa81ebd56882bf25261427f3ca6672e2782e0b.tar.gz skyhanni-f4fa81ebd56882bf25261427f3ca6672e2782e0b.tar.bz2 skyhanni-f4fa81ebd56882bf25261427f3ca6672e2782e0b.zip |
Fixed a simple typo (#2748)
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/combat/BestiaryData.kt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/combat/BestiaryData.kt b/src/main/java/at/hannibal2/skyhanni/features/combat/BestiaryData.kt index f40e437e5..fd4ca137d 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/combat/BestiaryData.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/combat/BestiaryData.kt @@ -448,7 +448,8 @@ object BestiaryData { return true } else if (name == "Search Results") { val loreList = stack.getLore() - if (loreList.size >= 2 && loreList[0].startsWith("§7Query: §a") && + if (loreList.size >= 2 && + loreList[0].startsWith("§7Query: §a") && loreList[1].startsWith("§7Results: §a") ) { return true @@ -464,7 +465,7 @@ object BestiaryData { enum class NumberType(val type: String) { INT("Normal (1, 2, 3)"), - ROMAN("Roman (I, II, III") + ROMAN("Roman (I, II, III)") } enum class DisplayType(val type: String) { |