Skip to content

Commit

Permalink
Fire Modern Knockback event last
Browse files Browse the repository at this point in the history
Closes #630
  • Loading branch information
ACGaming committed Feb 24, 2025
1 parent a7fe60c commit 1160540
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import net.minecraft.util.math.MathHelper;
import net.minecraftforge.event.entity.living.LivingKnockBackEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.EventPriority;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;

import mod.acgaming.universaltweaks.UniversalTweaks;
Expand All @@ -14,7 +15,7 @@
@Mod.EventBusSubscriber(modid = UniversalTweaks.MODID)
public class UTModernKnockback
{
@SubscribeEvent
@SubscribeEvent(priority = EventPriority.LOWEST)
public static void utModernKnockback(LivingKnockBackEvent event)
{
if (!UTConfigTweaks.ENTITIES.utModernKnockbackToggle) return;
Expand Down

0 comments on commit 1160540

Please sign in to comment.