Posted April 13, 201411 yr Hello, I have this code: @Mod(...) public class SomeMod { static { TileEntity.addMapping(SomeTileEntity.class, "someTile"); } } If I run it from Eclipse it's ok. But if I run it on server I get this error: java.lang.NoSuchMethodError: net.minecraft.tileentity.TileEntity.addMapping(...) at ..........
April 13, 201411 yr You should always register TileEntitys by using: GameRegistry.registerTileEntity(YourTileEntity.class, "YourTileEntityName"); PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.
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.