FabricMC/Mixin

AP regression from new release in Loader 0.14.15

zml2008 opened this issue · 2 comments

I've got an accessor targeting a class in my own API library that is non-obf. This accessor has been compiling and applying fine in past versions, but with this new Mixin version (0.12.3?) I get the following compile error:

C:\Users\abby\dev\kyori-text\adventure-platform-fabric\src\accessor\java\net\kyori\adventure\platform\fabric\impl\accessor\api\key\InvalidKeyExceptionAccess.java:34: error: Invalid Factory @Invoker return type, expected null but found net.kyori.adventure.key.InvalidKeyException
  @Invoker(value = "<init>", remap = false)
  ^

I have tried adding remap = false to avoid the error, but it has had no effect.

Seems to be another case of mixin randomly using mirror instead of its own abstractions that I missed in the PR. Will fix later today.
See here.

thanks llama <3