Adrian Brock

Results 191 comments of Adrian Brock

> Can 680 load addonitional lib such as my mod? It is not for mod loading, quite the opposite. See #679 for an explanatio of how the classloading works. It...

1) The error says you still trying to use language adapter which can't ever work? 2) This says you are trying to load your finder subclass from the mod classloader...

Ok, this is caused by fabric loader signing the jar https://github.com/FabricMC/fabric-loader/blob/d713b2a801ad142394ac0eb1d1eaa452fc783021/build.gradle#L278 That kind of seals the packages. You can't add new classes into those packages in the same classloader unless...

This looks like a duplicate of https://github.com/FabricMC/fabric-loom/issues/456?

This is another one of those changes that requires modification of enum constants. The game rule categories are an enum. See: https://github.com/FabricMC/fabric-loom/pull/305 https://github.com/SpongePowered/Mixin/issues/387

See #1921 Basically not synchronizing modded block entity types could mean the BlockEntityType registry has different entries/raw ids. The raw id is just a "next number" so it is based...

For the second one, I would guess this is some bad interaction with the shutdown of MinecraftClient? The execution of (client) commands is ultimately done in response to an opengl...

This isn't a fabric issue. ```` PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target ```` This says your installation of java doesn't trust the...

I don't know enough about the tweaker to be able to properly answer this question. But it looks like there is some issue with the classloading. ```` Caused by: java.lang.NoSuchMethodError:...

I assume the client is not in a development environment? The issue is the fabric gametest mod does different things in a development environment, see for example here: https://github.com/FabricMC/fabric/blob/1.19/fabric-gametest-api-v1/src/main/java/net/fabricmc/fabric/mixin/gametest/ArgumentTypesMixin.java You...