No More Useless Keys - NMUK (Fabric)

No More Useless Keys - NMUK (Fabric)

73.9k Downloads

[1.17] Crash when opening Controls screen

Leo40Git opened this issue ยท 4 comments

commented

Using Amecs API 1.1.5+21w16a on Minecraft 1.17.1.

Crash report: https://pastebin.com/vEB7cFnf

commented

Well, you're using an outdated version of NMUK :)

Try updating that to 1.0.1+m1.17.1

commented

I don't have a dependency on NMUK (I guess Amecs API includes it), but okay I guess?

commented

oh, true.
Amecs API requires this for testing purposes. Sadly afaik I can't turn that dependency propagation of NMUK off.

So the way to go would probably to exclude NMUK in your build-script:

dependencies {
  modImplementation("de.siphalor:amecs-1.17:1.1.5+") {
    exclude module: "nmuk-1.17"
    // or
    transitive false
  }
}
commented

That's about what I did, yeah. Thanks for the help!