Chocohead
Chocohead
If you're locally trying out MFFS you can just comment out the relevant lines in the `build.gradle` (ie [these](https://github.com/nekosune/modularforcefieldsystem/blob/1.12/build.gradle#L141-L142)). If you're externally including MFFS as a dependency you can exclude...
Are you always running Tiny Remapper with `--resolvemissing`?
The significance is that nothing in Fabric currently uses `resolveMissing` (as far as I'm aware). Hence you're seeing problems which haven't been seen elsewhere. Whether these problems are caused by...
I've had a closer look at what might be the problem. `TameableEntity` implements `Tameable#method_48926` through a synthetic method: ```java public EntityView method_48926() { return super.getWorld(); } ``` In effectively (but...
For what it's worth I did this a [few months ago](https://github.com/Chocohead/Crafty-Crashes). Ran happily enough alongside NEC back then and I would presume it still does now.
Have you tried asking Player/imer if they'll host it?
New idea, how about using Github's username.github.io webpages? Or are they too limited?
This comes from the lambda contents being in a different method which has a different LVT naming index, possible to fix but practically quite annoying
This will be a consequence of what the particular `IResultSaver` you're using will be doing. If we look at `Fernflower#decompileContext`: https://github.com/FabricMC/intellij-fernflower/blob/6f54090349af9cb1b4663765cf4bd2e195dd53c0/src/org/jetbrains/java/decompiler/main/Fernflower.java#L80-L88 The final call is to `StructContext#saveContext`. That method will...
Injecting before super is called is perfectly possible if the callback is forced to be static. In fact it can be quite useful want wanting to modify a parameter passed...