The fabric version of the quilt implementation is too old
RegularSource opened this issue · 3 comments
Create requires version [[0.73.2+1.19.2,∞)] of fabric-api, which is missing!
The quilt is detected as fabric0.73.0 when loading the fabric module, but fabric0.73.2 is required for some modules
This is a loader repo, not QFAPI: https://github.com/QuiltMC/quilted-fabric-api/issues
In any case, you'll just have to be patient. For now, you can use loader overrides to use Create with the current QFAPI, it won't crash on startup, but might crash in game, I haven't thoroughly tested it.
To override a dependency you have to be using QL 0.18.x and create a file called quilt-loader-overrides.json
in your config folder with the following contents:
{
"schema_version": 1,
"overrides": [
{
"path": "<mods>/create-fabric-0.5.0.i-946+1.19.2.jar",
"depends": {
"replace": {
"id": "fabric-api",
"versions": "\u003e\u003d0.73.2+1.19.2"
},
"with": {
"id": "fabric-api",
"versions": "\u003e\u003d0.73.0+1.19.2"
}
}
}
]
}
Supplement: This is a QSL/QFAPI issue,There is currently no updated version adaptation