Siphalor / nmuk

A minecraft fabric mod allowing to bind multiple key shortcuts to each keybinding
https://modrinth.com/mod/nmuk
Apache License 2.0
14 stars 9 forks source link

[1.17] Crash when opening Controls screen #3

Closed Leo40Git closed 3 years ago

Leo40Git commented 3 years ago

Using Amecs API 1.1.5+21w16a on Minecraft 1.17.1.

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

Siphalor commented 3 years ago

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

Try updating that to 1.0.1+m1.17.1

Leo40Git commented 3 years ago

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

Siphalor commented 3 years ago

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
  }
}
Leo40Git commented 3 years ago

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