Bartosz Skrzypczak

Results 110 comments of Bartosz Skrzypczak

Except fixing it in forge gradle may break some forge patches. It would be possible to add some of the Minecraft classes to the fg list but that would probably...

`deobfProvided` is the exact opposite of what I need. Provided dependencies are used at compile time but not added to class path at runtime. I want something is on the...

The point is that it should just work without messing around in IDE settings every single time I refresh gradle project. ForgeGradle also has `runClient` and `runServer` tasks that won't...

You can use a [mixin configuration plugin](https://github.com/SpongePowered/Mixin/blob/master/src/main/java/org/spongepowered/asm/mixin/extensibility/IMixinConfigPlugin.java) for it.

I don't think you could. But maybe there is a way and I just don't know about it. You may consider trying to generate your mixin configs at build time...

> The more I think about this, the more it makes sense to do the following for "removed" non-shadow methods: > > * Method body is replaced with an exception...

> @Barteks2x I guess the JVM doesn't care about the type unless you need to do something that's specific to the particular type? It's weird, but it works. I double...

As it is I don't see overwrites being unmapped at all. I thought it's an issue with transformer exclusions before, but apparently it isn't the case (well, it was but...

~~I verified that removing this if() fixes that one issue with overwrites, but there are still some issues with remapping @Shadow fields, so I end up with this exception:~~ ```...

If you think of mixin classes as data-driven ASM, it makes more sense to do some things different than what would normally happen in java. In this case, it's likely...