-
Minecraft Version1.20.x Version1.106.1 (fabric) DetailsI hope this log is helpful enough. I just created an instance in IntelIJ to make a new mod and it just crashes when CCT is in my mods folder. See crash report here: https://mclo.gs/2QG8r9r and log here: https://mclo.gs/6sLzP8Z |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 9 replies
-
Fabric 0.86 deprecated one of the modules that we use, which means it's no longer present in a dev environment by default. We've updated to the replacement API in dev (24d74f5), but that hasn't been released yet. As a workaround, you can add the following dependency in Gradle: modRuntimeOnly("net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}") |
Beta Was this translation helpful? Give feedback.
-
I tried putting that in my build.gradle, but now Fabric gives me this on startup:
It seems as though the new version of the modeling api is incompatible with the old version but I don't know how I can exclude this from Gradle. Any ideas? |
Beta Was this translation helpful? Give feedback.
Fabric 0.86 deprecated one of the modules that we use, which means it's no longer present in a dev environment by default. We've updated to the replacement API in dev (24d74f5), but that hasn't been released yet.
As a workaround, you can add the following dependency in Gradle:
modRuntimeOnly("net.fabricmc.fabric-api:fabric-api-deprecated:${project.fabric_version}")