Examples of TileTransvectorInterface


Examples of thaumic.tinkerer.common.block.tile.transvector.TileTransvectorInterface

          currenttip.add(StatCollector.translateToLocal("ttwaila.autonomous"));
      }
      //currenttip.add("Owned by: "+tileAn.Owner);
    }
    if (accessor.getBlock() == ThaumicTinkerer.registry.getFirstBlockFromClass(BlockTransvectorInterface.class)) {
      TileTransvectorInterface tileTrans = (TileTransvectorInterface) accessor.getTileEntity();
      String currentBlock;
      TileEntity tile = tileTrans.getTile();
      if (tile == null)
        currentBlock = StatCollector.translateToLocal("ttwaila.nothing");
      else {
        currentBlock = tile.getBlockType().getLocalizedName();
      }
View Full Code Here

Examples of thaumic.tinkerer.common.block.tile.transvector.TileTransvectorInterface

    setResistance(10F);
  }

  @Override
  public TileTransvector createNewTileEntity(World var1, int var2) {
    return new TileTransvectorInterface();
  }
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.