Skip to content
This repository has been archived by the owner on Dec 30, 2022. It is now read-only.

Options in the fabric.mod.json

DeathsGun edited this page Oct 1, 2021 · 1 revision

Setting the Modrinth id

Mod Manager now allows you to set the project id manually:

Just add the following to your fabric.mod.json:

"custom": {
    "modmanager": {
        "modrinth": "myProjectId"
    }
}

Disabling update checks

Some mods may implement a custom updating program and don't want ModManager to check for updates.

This can be done by setting a value in fabric.mod.json:

"custom": {
    "modmanager": {
        "disable-checking": true
    }
}