Event Wrapper Mod unifies event systems across Forge and Fabric loaders. It helps mods run on both platforms by wrapping standard Forge event calls. This tool works directly with Forge while using mixins to maintain compatibility on Fabric.

Event Wrapper Mod

Features:

  • Lets mods handle game events across both Forge and Fabric loaders without separate setups.
  • Wraps standard event methods by adding wrapper tags to existing event listeners.
  • Works directly on Forge platforms while using mixins to maintain Fabric compatibility.
  • Follows simple setup rules so projects can adapt or remove the system whenever needed.
  • Focuses long-term compatibility around main game releases like 1.20.1 and 1.21.1.

How to Use:

  1. Add the @EventBusSubscriberWrapper tag to your target class.
  2. Tag your event methods with @SubscriberEventWrapper.
  3. Add the corresponding wrapper event parameter, such as LivingHealEventWrapper or MobEffectEventWrapper.
  4. Run your project across Forge or Fabric setups without rewriting event logic.
@EventBusSubscriberWrapper
public SomeClass {
    
    @SubscriberEventWrapper
    public static void onHeal (LivingHealEventWrapper event) {
        // Code for LivingEntity heal
    }
    
    @SubscriberEventWrapper
    public static void onEffect(MobEffectEventWrapper event) {
        // Code for LivingEntity effect
    }
}

Event Wrapper Mod Download Links

Filter by

For Minecraft 1.20.1, 1.20

Forge 1 MB Sep 4, 2026
Fabric 149 KB Sep 4, 2026
Fabric, Quilt 2 MB Sep 4, 2026
Forge 1 MB Sep 4, 2026

Click to rate this post!
[Total: 0 Average: 0]