Hey there,
I am using the class transformer to patch a core method in RendererLivingEntity.
I currently do this as below:
@Override
public byte[] transform(String arg0, String arg1, byte[] arg2) {
if (arg0.contains("bhb")) {
return patchClassASM(arg0, arg2, true);
}
return arg2;
}
Ideally I would like this mod to remain compatible between updates - Is there any way I can patch a deobfuscated / srg version?