aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHiZe_ <superhize@hotmail.com>2023-08-28 23:32:27 +0200
committerGitHub <noreply@github.com>2023-08-28 23:32:27 +0200
commite53b7e6b49244085eed7623fa497988529aa5414 (patch)
tree04f5f724a49e14e8be12fff4018042510bb6012f /src
parentd725cb0d9080ffaa49b1eb43f185d7e0fa0b9544 (diff)
downloadskyhanni-e53b7e6b49244085eed7623fa497988529aa5414.tar.gz
skyhanni-e53b7e6b49244085eed7623fa497988529aa5414.tar.bz2
skyhanni-e53b7e6b49244085eed7623fa497988529aa5414.zip
Fixed highlight in main bestiary menu (#417)
Co-authored-by: superhize <superhize@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/BestiaryData.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/BestiaryData.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/BestiaryData.kt
index ca7a6116b..949a326a9 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/BestiaryData.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/BestiaryData.kt
@@ -64,7 +64,7 @@ object BestiaryData {
for (slot in InventoryUtils.getItemsInOpenChest()) {
val stack = slot.stack
val lore = stack.getLore()
- if (lore.any { it == "§7Overall Progress: §b100% §7(§c§lMAX!§7)" || it == "§7Families Completed: §a100§6% §7(§c§lMAX!§7)" }) {
+ if (lore.any { it == "§7Overall Progress: §b100% §7(§c§lMAX!§7)" || it == "§7Families Completed: §a100%" }) {
slot highlight LorenzColor.GREEN
}
}