Skip to content

Commit

Permalink
fix hatcessory detection (hannibal002#918)
Browse files Browse the repository at this point in the history
Fixed Crap Hat of Celebration not getting detected as accessory in Hide Not Clickable Items. hannibal002#918
  • Loading branch information
ItsEmpa authored Jan 13, 2024
1 parent 8a0ece5 commit 9964248
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class HideNotClickableItems {
if (ItemUtils.isSkyBlockMenuItem(stack)) return false

reverseColor = true
if (stack.getLore().any { it.contains("ACCESSORY") || it.contains("HATCCESSORY") }) return false
if (stack.getLore().any { it.contains("ACCESSORY") || it.contains("HATCESSORY") }) return false

hideReason = "This item is not an accessory!"
return true
Expand Down

0 comments on commit 9964248

Please sign in to comment.