aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/slayer
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-13 22:54:08 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-02-13 22:54:08 +0100
commit67ed7a34d52067dd83f93d8ab8e81401149b5659 (patch)
tree67de77857f661d7a5324dcc38a59a2df5e3e025e /src/main/java/at/hannibal2/skyhanni/features/slayer
parent848e9e6ca15b5e70dc0a282d7adb8c2f299be2c4 (diff)
downloadskyhanni-67ed7a34d52067dd83f93d8ab8e81401149b5659.tar.gz
skyhanni-67ed7a34d52067dd83f93d8ab8e81401149b5659.tar.bz2
skyhanni-67ed7a34d52067dd83f93d8ab8e81401149b5659.zip
Fixed fire veil particle hider bug.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/slayer')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerDaggerHelper.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerDaggerHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerDaggerHelper.kt
index b39c85928..fe16ed426 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerDaggerHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/slayer/blaze/BlazeSlayerDaggerHelper.kt
@@ -3,7 +3,7 @@ package at.hannibal2.skyhanni.features.slayer.blaze
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.core.util.render.TextRenderUtils
import at.hannibal2.skyhanni.data.ClickType
-import at.hannibal2.skyhanni.events.ItemClickInHandEvent
+import at.hannibal2.skyhanni.events.BlockClickEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.PacketEvent
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
@@ -204,7 +204,7 @@ class BlazeSlayerDaggerHelper {
}
@SubscribeEvent
- fun onItemClick(event: ItemClickInHandEvent) {
+ fun onBlockClick(event: BlockClickEvent) {
if (!isEnabled()) return
if (clientSideClicked) return
if (event.clickType != ClickType.RIGHT_CLICK) return