diff options
author | Lorenz <lo.scherf@gmail.com> | 2022-09-04 14:42:18 +0200 |
---|---|---|
committer | Lorenz <lo.scherf@gmail.com> | 2022-09-04 14:42:18 +0200 |
commit | f4e16cc1b3accc3c5ae71ffb42a0df83ed6ffc4b (patch) | |
tree | 2bcee3ef6eadcfdb774ccb066c372608d6e3a8c4 | |
parent | b7013e82739ed7a9d28eef21fe0ec11496dffd0e (diff) | |
download | skyhanni-f4e16cc1b3accc3c5ae71ffb42a0df83ed6ffc4b.tar.gz skyhanni-f4e16cc1b3accc3c5ae71ffb42a0df83ed6ffc4b.tar.bz2 skyhanni-f4e16cc1b3accc3c5ae71ffb42a0df83ed6ffc4b.zip |
fixed that items with stars don't gray out properly when hidden by the 'hide not clickable' feature
-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 |