aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-09-04 14:42:18 +0200
committerLorenz <lo.scherf@gmail.com>2022-09-04 14:42:18 +0200
commitf4e16cc1b3accc3c5ae71ffb42a0df83ed6ffc4b (patch)
tree2bcee3ef6eadcfdb774ccb066c372608d6e3a8c4
parentb7013e82739ed7a9d28eef21fe0ec11496dffd0e (diff)
downloadskyhanni-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.md1
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt2
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