Posted May 9, 201411 yr How does the TileEntity update function work. How do you call it. How do you start it? Please help me Author of the unreleased mod Factory Craft I'm usually known as MnomisC IGN MnomisC
May 9, 201411 yr Author So you just have to have a onUpdate method in your TileEntity class? Author of the unreleased mod Factory Craft I'm usually known as MnomisC IGN MnomisC
May 9, 201411 yr onUpdate is for entitys. You just have to override updateEntity and it will be called every tick. updateEntity is a method from the tileEntity class which your class should extend. e.g. public class MyTile extends TileEntity { @Override public void updateEntity() { //any code here will be run each tick } } I am the author of Draconic Evolution
May 9, 201411 yr Author Thanks for helping Author of the unreleased mod Factory Craft I'm usually known as MnomisC IGN MnomisC
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.