Jump to content

[ClassTransformer] class is missing


benfah

Recommended Posts

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

Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.