Package net.minecraft.world.chunk

Examples of net.minecraft.world.chunk.Chunk.addTileEntity()


      for (int i1 = 0; i1 < nbttaglist2.tagCount(); ++i1) {
        NBTTagCompound nbttagcompound4 = (NBTTagCompound) nbttaglist2.tagAt(i1);
        TileEntity tileentity = TileEntity.createAndLoadEntity(nbttagcompound4);

        if (tileentity != null) {
          chunk.addTileEntity(tileentity);
        }
      }
    }

    if (nbtTagCompound.hasKey("TileTicks")) {
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.