From 22dcc7c8954c595f5465d8bde20c077b57679465 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 2 Oct 2022 13:32:42 +0200 Subject: renamed particle events --- src/main/java/at/hannibal2/skyhanni/test/LorenzTest.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/test') diff --git a/src/main/java/at/hannibal2/skyhanni/test/LorenzTest.kt b/src/main/java/at/hannibal2/skyhanni/test/LorenzTest.kt index feefb60d7..c82048e8c 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/LorenzTest.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/LorenzTest.kt @@ -3,8 +3,8 @@ package at.hannibal2.skyhanni.test import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.events.LorenzChatEvent import at.hannibal2.skyhanni.events.PacketEvent -import at.hannibal2.skyhanni.events.PlayParticleEvent import at.hannibal2.skyhanni.events.PlaySoundEvent +import at.hannibal2.skyhanni.events.ReceiveParticleEvent import at.hannibal2.skyhanni.utils.LocationUtils import at.hannibal2.skyhanni.utils.LorenzDebug import at.hannibal2.skyhanni.utils.LorenzLogger @@ -123,7 +123,7 @@ class LorenzTest { } @SubscribeEvent(priority = EventPriority.LOW, receiveCanceled = true) - fun onHypExplosions(event: PlayParticleEvent) { + fun onHypExplosions(event: ReceiveParticleEvent) { // if (!LorenzUtils.inSkyblock) return // when (event.type) { // EnumParticleTypes.EXPLOSION_LARGE, @@ -341,7 +341,7 @@ class LorenzTest { } @SubscribeEvent - fun onParticlePlay(event: PlayParticleEvent) { + fun onParticlePlay(event: ReceiveParticleEvent) { if (!shouldLogPackets) return // val particleType = event.type -- cgit