Package codechicken.enderstorage.storage.item

Examples of codechicken.enderstorage.storage.item.TileEnderChest


    {
      TileEntity tile = world.getTileEntity(pos.blockX, pos.blockY, pos.blockZ);


            if (tile instanceof TileEntityEnderChest && p.isSneaking()) {
        TileEnderChest chest = (TileEnderChest)tile;

        focus.getTagCompound().setInteger("freq", chest.freq);
        focus.getTagCompound().setString("owner", chest.owner);
        focus.getTagCompound().setBoolean("ender", true);
        wand.setFocus(stack, focus);
View Full Code Here

TOP

Related Classes of codechicken.enderstorage.storage.item.TileEnderChest

Copyright © 2018 www.massapicom. 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.