Package thaumic.tinkerer.common.block.tile.transvector

Examples of thaumic.tinkerer.common.block.tile.transvector.TileTransvectorDislocator.receiveRedstonePulse()


  @Override
  public void updateTick(World par1World, int par2, int par3, int par4, Random par5Random) {
    TileEntity tile = par1World.getTileEntity(par2, par3, par4);
    if (tile != null && tile instanceof TileTransvectorDislocator) {
      TileTransvectorDislocator dislocator = (TileTransvectorDislocator) tile;
      dislocator.receiveRedstonePulse();
    }
  }

  @Override
  public void registerBlockIcons(IIconRegister par1IconRegister) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.