Skip to content

Disabling Lithium's Mixins using your mod's fabric mod.json

2No2Name edited this page Feb 5, 2023 · 2 revisions

You can disable lithium's features from your fabric-mod.json. The intended use is avoid mod incompatibilities when there is no other way to make the mods work together. To disable a feature you can add a custom tag to your fabric-mod.json file (example to disable alloc.composter). A message about the mod overrides is printed to console on startup.

"custom": {
  "lithium:options": {
    "alloc.composter": false
  }
}
Clone this wiki locally