Thanks for the suggestions! but when I tried to call super(), it said "Constructor call must be the first statement in a constructor", even though I put it in the first line.
public class ClientProxy extends CommonProxy {
@Override
public void registerRenderers() {
super();
MinecraftForgeClient.preloadTexture(jerry);
}
I tried calling it in both Client and Common proxy just to check if it worked. And when I tried to make it non-static, it told me that I couldn't call it here
@Init
public void load(FMLInitializationEvent event) {
ClientProxy.registerRenderers(); //it said this cannot call a non-static method
LanguageRegistry.addName(jerry, "Jerry the Carrot");
}
Thanks for the help!