Examples of func_150818_a()


Examples of net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a()

        chunk.getBlockStorageArray()[l] = extendedblockstorage;
      }

      for (int i1 = 0; i1 < 16; ++i1) {
        for (int j1 = 0; j1 < 16; ++j1) {
          extendedblockstorage.func_150818_a(i1, k & 15, j1, Block.getBlockById(this.cachedBlockIDs[k] & 255));
          extendedblockstorage.setExtBlockMetadata(i1, k & 15, j1, this.cachedBlockMetadata[k]);
        }
      }
    }
View Full Code Here

Examples of net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a()

            ExtendedBlockStorage extendedblockstorage = chunk.getBlockStorageArray()[y >> 4];

            if (extendedblockstorage == null)
                return false;   //should never happen as we are replacing an existing block

            extendedblockstorage.func_150818_a(x, y & 15, z, dense_ore_blocks);
            extendedblockstorage.setExtBlockMetadata(x, y & 15, z, id);

            if (block1.hasTileEntity(k1)) {
                TileEntity te = chunk.getTileEntityUnsafe(x & 0x0F, y, z & 0x0F);
                if (te != null) {
View Full Code Here

Examples of net.minecraft.world.chunk.storage.ExtendedBlockStorage.func_150818_a()

    {
      if ( blk[0] == matrixFrame )
        blk[0] = Platform.air;

      ExtendedBlockStorage extendedBlockStorage = storage[y >> 4];
      extendedBlockStorage.func_150818_a( x, y & 15, z, (Block) blk[0] );
      // extendedBlockStorage.setExtBlockID( x, y & 15, z, blk[0] );
      extendedBlockStorage.setExtBlockMetadata( x, y & 15, z, (Integer) blk[1] );
      extendedBlockStorage.setExtBlocklightValue( x, y & 15, z, (Integer) blk[2] );
    }
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.