Event Wrapper Mod (1.20.1) – Bridge the Gap Between Forge and Fabric
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.
![]()
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:
- Add the
@EventBusSubscriberWrappertag to your target class. - Tag your event methods with
@SubscriberEventWrapper. - Add the corresponding wrapper event parameter, such as
LivingHealEventWrapperorMobEffectEventWrapper. - 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
}
}
How to Install:
New to Minecraft? Follow our step-by-step guide to install Mods on your PC.View Guide
Requirements:
Event Wrapper Mod Download Links
Click to rate this post!
[Total: 0 Average: 0]
0
This post has no comments yet. Be the first — your comment will appear here.