From 20137951c22863503b1ffe0bc6eada76830cfc06 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 21 Dec 2023 01:55:56 +0100 Subject: Fixed Hide Healer Fairy not working anymore. --- .../java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/main/java/at') diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt index 801b28ab4..e654fc4a9 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonHideItems.kt @@ -150,7 +150,8 @@ class DungeonHideItems { } if (config.hideHealerFairy) { - if (skullTexture == healerFairyTexture) { + // Healer Fairy texture is stored in id 0, not id 4 for some reasos. + if (entity.inventory[0]?.getSkullTexture() == healerFairyTexture) { event.isCanceled = true return } -- cgit