Posted December 24, 20177 yr Hi, I made a simple ClassTransformer that prints out the transformedName: import net.minecraft.launchwrapper.IClassTransformer; public class TestClassTransformer implements IClassTransformer { @Override public byte[] transform(String name, String transformedName, byte[] basicClass) { System.out.println(transformedName); return basicClass; } } The class names are being printed, however the class I want to transform (net.minecraft.world.gen.feature.WorldGenEndPodium) doesn't appear on this list. The fml-client-latest.log shows all the results. Try to search for the class. Why does this happen and how can I make the class transformable? Thanks in advance. fml-client-latest.log
December 26, 20177 yr Author But what else am I supposed to do if this class doesn't have some kind of Event or Hook?
December 26, 20177 yr 5 hours ago, benfah said: But what else am I supposed to do if this class doesn't have some kind of Event or Hook? https://github.com/MinecraftForge/MinecraftForge/compare I do Forge for free, however the servers to run it arn't free, so anything is appreciated. Consider supporting the team on Patreon
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.