Barteks2x
Barteks2x
This only happens with better twitter installed, even if all options are disabled. Steps to reproduce: * Install the addon * Log in on twitter * Use middle mouse button...
The service refuses to start. This is all I know.
Because of obfuscation, Minecraft's opengl code is full of things like this: `GlStateManager.glTexParameteri(3553, 10243, 10497);`. Would it be possible for MinecraftDev to either automatically replace them with actual GL constants...
Legacy FML agent has this code https://github.com/SpongePowered/Mixin/blob/4585277f9f4b026065ce749f279ea1ad4919c4f1/src/launchwrapper/java/org/spongepowered/asm/launch/platform/MixinPlatformAgentFMLLegacy.java#L314-L324 and this allows remapping refmap to work. Modlauncher specific agent doesn't have an equivalent. While this wouldn't allow mods using mixin to work...
### Explanation A `@ModifyReturnValue` would target method calls and take the return value of the method as an argument, and return the modified return value. Additional parameters as with other...
I'm honestly not sure if it should be considered a bug. I've been unknowingly relying on this "feature" for my mod to work for quite a long time now But...
Example target class: ```java public class TestTarget { } ``` And example mixin: ```java @Mixin(TestTarget.class) public abstract class TestMixin { private Object field1 = new Object(); private Object field2 =...
Trying to hotswap changes to almost any mixin causes an exception like this, causing hotswap to fail: ```java [21:22:25] [JDWP Transport Listener: dt_socket/ERROR] [mi.agent/]: Error while re-transforming target class net/minecraft/world/chunk/listener/TrackingChunkStatusListener...
Consider the following example target class: ```java public class TestClass { private int testMethod() { return 10; } public int test() { return 0; } } ``` And the following...
Some user just reported to me that CubicChunks mod gets loaded twice and is detected as dumplicate mod, causing a crash on latest forge version. Unfortunately, removing ForceLoadAsMod makes it...