From f4e16cc1b3accc3c5ae71ffb42a0df83ed6ffc4b Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sun, 4 Sep 2022 14:42:18 +0200 Subject: fixed that items with stars don't gray out properly when hidden by the 'hide not clickable' feature --- src/main/java/at/hannibal2/skyhanni/features/items/ItemStars.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') 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 -- cgit