Package net.minecraft.src.buildcraft.core.network

Examples of net.minecraft.src.buildcraft.core.network.PacketPayload


            ((PipeLogicAdvancedWood)container.pipe.logic).exclude = !((PipeLogicAdvancedWood)container.pipe.logic).exclude;
        }
       
        if (mc.theWorld.isRemote) {
         
          PacketPayload payload = container.pipe.getNetworkPacket();

        PacketAdditionalPipes packet = new PacketAdditionalPipes(NetworkID.PACKET_PIPE_DESC, payload);
        packet.posX = container.pipe.xCoord;
        packet.posY = container.pipe.yCoord;
        packet.posZ = container.pipe.zCoord;     
View Full Code Here


          pipe.logic.freq = 0;
        }
       
        if (mc.theWorld.isRemote) {
         
          PacketPayload payload = pipe.getNetworkPacket();

        PacketAdditionalPipes packet = new PacketAdditionalPipes(NetworkID.PACKET_PIPE_DESC, payload);
        packet.posX = pipe.xCoord;
        packet.posY = pipe.yCoord;
        packet.posZ = pipe.zCoord;     
View Full Code Here

                pipeLogic.distData[i] = 1;
            }
       
        if (mc.theWorld.isRemote) {
         
          PacketPayload payload = pipe.getNetworkPacket();

        PacketAdditionalPipes packet = new PacketAdditionalPipes(NetworkID.PACKET_PIPE_DESC, payload);
        packet.posX = pipe.xCoord;
        packet.posY = pipe.yCoord;
        packet.posZ = pipe.zCoord;     
View Full Code Here

        return null;
    }
   
    private void sendPipeDesc(TileGenericPipe tile, EntityPlayerMP player) {
     
      PacketPayload payload = tile.pipe.getNetworkPacket();
        PacketAdditionalPipes packet = new PacketAdditionalPipes(1, payload);
       
        packet.posX = tile.pipe.xCoord;
        packet.posY = tile.pipe.yCoord;
        packet.posZ = tile.pipe.zCoord;     
View Full Code Here

TOP

Related Classes of net.minecraft.src.buildcraft.core.network.PacketPayload

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.