Skip to content

Commit

Permalink
increase chat priority to fix skyhanni compat
Browse files Browse the repository at this point in the history
  • Loading branch information
MicrocontrollersDev committed Jul 6, 2024
1 parent d947cd8 commit 64d9d3d
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
package org.polyfrost.hytils.handlers.chat;

import cc.polyfrost.oneconfig.utils.hypixel.HypixelUtils;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import org.polyfrost.hytils.HytilsReborn;
import org.polyfrost.hytils.handlers.chat.modules.blockers.*;
import org.polyfrost.hytils.handlers.chat.modules.events.AchievementEvent;
Expand Down Expand Up @@ -139,7 +140,7 @@ public void handleWorldLeave(WorldEvent.Unload e) {
}
}

@SubscribeEvent
@SubscribeEvent(priority = EventPriority.HIGH)
public void handleChat(ClientChatReceivedEvent event) {
if (!HypixelUtils.INSTANCE.isHypixel()) {
return;
Expand Down

0 comments on commit 64d9d3d

Please sign in to comment.