Take control of mixin conflicts in your modpack. Mixin Helper lets you blacklist, prioritize, and surgically modify mixins from any loaded mod — all from a single JSON config file. No code, no recompiling, no removing mods.
Full documentation, guides, and examples at https://tysontheember.dev/mixin-helper/intro/
This is an advanced tool. If you don't know what mixins are or how they work, this mod is not for you.
While there are guardrails Mixin Helper directly interferes with how other mods patch the game. Incorrect use will break things. This includes but is not limited to:
Do NOT report bugs to mod authors if you have modified their mixins with this tool. Any issues caused by Mixin Helper are your responsibility.
| Minecraft Version | Loader | Status |
|---|---|---|
| 1.20.1 | Forge | Fully Supported |
| 1.20.1 | Fabric | Fully Supported |
| 1.21.1 | NeoForge | Fully Supported |
| 1.21.1 | Fabric | Fully Supported |
mods folderconfig/mixinhelper.jsonconfig/mixinhelper-report.json to see every mixin loaded in your gameTwo mods crash because they both modify the same class? Blacklist the offending mixin:
{
"enabled": true,
"blacklist": {
"mixins": ["com.conflictingmod.mixin.MixinLevelRenderer"],
"mixinConfigs": [],
"targetClasses": []
}
}
Need finer control? Neutralize a single injected method instead of the whole mixin:
{
"methodRemovals": {
"rules": [
{
"targetClass": "net.minecraft.world.level.Level",
"method": "brokenMethod",
"action": "nop"
}
]
}
}

Utility mod for modpack developers that provides complete control over mixin behavior