diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 03bb309cb..1345e0061 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - Optimizing the highlight block size for minions, blazing souls and gravity orbs - Added option to change the gray-out opacity for 'Not Clickable Items' - Added option to show the health of Voidgloom Seraph 4 during the laser phase (useful when trying to phase skip) +- Fixed that items with stars don't gray out properly when hidden by the 'hide not clickable' feature ## Version 0.5 - Minions and RNG Meter diff --git a/src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt b/src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt index 224ababfe..5d45e3908 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt @@ -18,7 +18,7 @@ class ItemStars { private val STAR_FIND_PATCHER = Pattern.compile("(.*)§.✪(.*)") private val armorParts = listOf("Helmet", "Chestplate", "Leggings", "Boots") - @SubscribeEvent(priority = EventPriority.LOWEST) + @SubscribeEvent(priority = EventPriority.LOW) fun onTooltip(event: ItemTooltipEvent) { if (!LorenzUtils.inSkyblock) return |