I just started to conver some mods to 21w40a. Everything appears to compile fine, but when I start the client (using gradlew runClient or starting it from IntelliJ) I get the following error:
Exception in thread "main" java.lang.RuntimeException: Failed to read accessWidener file from mod fabric-screen-handler-api-v1
at net.fabricmc.loader.impl.FabricLoaderImpl.loadAccessWideners(FabricLoaderImpl.java:443)
at net.fabricmc.loader.impl.launch.knot.Knot.init(Knot.java:122)
at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:68)
at net.fabricmc.loader.launch.knot.KnotClient.main(KnotClient.java:28)
at net.fabricmc.devlaunchinjector.Main.main(Main.java:86)
Caused by: net.fabricmc.accesswidener.AccessWidenerFormatException: line 1: Namespace (intermediary) does not match current runtime namespace (named)
at net.fabricmc.accesswidener.AccessWidenerReader.error(AccessWidenerReader.java:281)
at net.fabricmc.accesswidener.AccessWidenerReader.read(AccessWidenerReader.java:90)
at net.fabricmc.loader.impl.FabricLoaderImpl.loadAccessWideners(FabricLoaderImpl.java:441)
The Mod I am working on does not use any accessWideners. I alsow cleared my entire build environment to make sure that it is not related to cached data or any game-config. Is this a Bug or something I am missing?
I just started to conver some mods to 21w40a. Everything appears to compile fine, but when I start the client (using
gradlew runClientor starting it from IntelliJ) I get the following error:The Mod I am working on does not use any accessWideners. I alsow cleared my entire build environment to make sure that it is not related to cached data or any game-config. Is this a Bug or something I am missing?