Fabric API

Fabric API

106M Downloads

[1.16.2-pre1] Crash at Mixin Initialization during IDE Launching Minecraft Client

yuesha-yc opened this issue ยท 3 comments

commented

Hi I just updated my mappings and fapi and the loader from 1.16.1 to 1.16.2-pre1

minecraft_version=1.16.2-pre1
yarn_mappings=1.16.2-pre1+build.17
loader_version=0.9.0+build.204

#Fabric api
fabric_version=0.16.3+build.390-1.16

Basically it crashes on launching on some module at Mixin initialization part.

Runtime stacktrace:
https://paste.ubuntu.com/p/tMWQ9Mcdww/
Latest.log:
https://paste.ubuntu.com/p/xpbx92M6pQ/

Thanks in advance

commented

I have the same issue. this would be nice to fix

commented

REI or something else seems to be including fabric-dimensions which is not present currently in 1.16.2-pre1. You should exclude fabric api dependency from gradle.

So you would wrap your dependency in brackets like the following:

modImplementation(...)  {
    exclude(module: "fabric-api")
}

Otherwise mark the dependency as transitive. For REI that would make the game fail to start

commented

The log shows that they are using the 1.16.1 version of REI. Please update.