Examples of IElectricChest


Examples of mekanism.common.IElectricChest

      }
    }

    if(tileEntity instanceof TileEntityElectricChest)
    {
      IElectricChest electricChest = (IElectricChest)itemStack.getItem();
      electricChest.setAuthenticated(itemStack, ((TileEntityElectricChest)tileEntity).authenticated);
      electricChest.setLocked(itemStack, ((TileEntityElectricChest)tileEntity).locked);
      electricChest.setPassword(itemStack, ((TileEntityElectricChest)tileEntity).password);
    }

    if(tileEntity instanceof TileEntityFactory)
    {
      IFactory factoryItem = (IFactory)itemStack.getItem();
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.