Joseph Burton
Joseph Burton
### Minecraft Development for IntelliJ plugin version 2025.2-1.8.6 ### Description of the feature request Currently, if a method implemented from an interface is in a mixin, mcdev expects it to...
### Minecraft Development for IntelliJ plugin version 2025.2-1.8.6 ### Description of the feature request Interface injection has a problem where if javac can't find the implementation of the method it...
There is no reason to initialize (call ``) on classes for mixin audit. Doing this makes it harder to use mixin audit in unit tests, forcing you to pre-load various...
(Reminder: Loom now has the ability to apply annotation changes from mapping sets such as yarn.) I want to start a discussion on replacing Mojang's use of the `@Nullable` annotation...
The most important development in the history of Vineflower:
Add an API to detect changes in library codebases (primarily Minecraft). This API would go in a new test-only module for unit testing (which we surprisingly don't yet have). ##...
Note: this is untested, I'm not 100% sure the best way to test it, maybe you could use your test suite. The reason this is useful is that it shows...
Vanilla has no way to list modified gamerules, this would be useful as a way to quickly see what could be causing the server to behave differently.
See https://github.com/SpongePowered/Mixin/issues/387 for prior discussion on this subject. This implementation idea is mostly from @LlamaLad7 on Discord, and it's probably the cleanest way to handle enum additions in Fabric, so...
Let's say you have two mixins from two mods: ```java // mod 1 @Mixin(Foo.class) public interface FooAccessor { @Accessor Bar getBar(); // public } // mod 2 @Mixin(Foo.class) public abstract...