Jonathing

Results 178 comments of Jonathing

Needed to look at Srg2Source for ForgeDev and toolchain-related stuff, so I figured I might as well throw this in.

The code looks fine. After lunch I'll run it on my private home server and if it works I'll give the thumbs up.

Can you send me an example of even your entire buildscript so I can reproduce? In my own projects I just Jar-in-Jar the main MixinExtras jar.

Ok, I just tested this myself and am getting this problem. It looks like another implementation detail in ForgeGradle 6 where because `jarJar` is a configuration type, the data for...

Yeah scratch that, this issue is a lot more deep-rooted than I thought. It turns out that even after my makeshift fix of defaulting the version range, JarJar will still...

This can now be accomplished using the [JarJar Gradle plugin](https://plugins.gradle.org/plugin/net.minecraftforge.jarjar), compatible with ForgeGradle 7 Beta. ```groovy compileOnly annotationProcessor('io.github.llamalad7:mixinextras-common:0.5.0') runtimeOnly(jarJar('io.github.llamalad7:mixinextras-forge:0.5.0:slim')) { jarJar.configure(it) { range = '[0.5,)' } } ``` I will...

I genuinely don't know how to test this. EventBus is still really foreign to me. But the code looks sane. I'll leave this to Lex.

Superseded by #69, which completely redesigns EventBus. Re-open if you want this as a candidate for a 6.2 release.

How do I do that? And can the same be done for the older versions with the old buildscripts? (1.20.1 and older)