4142434445464748495051
@Override public boolean update(boolean force, boolean applyPhysics) { boolean result = super.update(force, applyPhysics); if (result) { TEBrewingStand stand = getTileEntity(); stand.setBrewTime(brewTime); stand.updateInRange(); } return result; }
14151617181920
public class BlockBrewingStand extends BlockContainer { @Override public TileEntity createTileEntity(GlowChunk chunk, int cx, int cy, int cz) { return new TEBrewingStand(chunk.getBlock(cx, cy, cz)); }