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 | ef413fb9547f830939c8bedd30dfd8a69ce6fdf5 (patch) | |
| tree | 2bcee3ef6eadcfdb774ccb066c372608d6e3a8c4 | |
| parent | bce0950744030f3f3a4f35b5c2750cf168bc587f (diff) | |
| download | SkyHanni-ef413fb9547f830939c8bedd30dfd8a69ce6fdf5.tar.gz SkyHanni-ef413fb9547f830939c8bedd30dfd8a69ce6fdf5.tar.bz2 SkyHanni-ef413fb9547f830939c8bedd30dfd8a69ce6fdf5.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 |
