Package logisticspipes.network.packets.pipe

Source Code of logisticspipes.network.packets.pipe.ChassiePipeModuleContent

package logisticspipes.network.packets.pipe;

import logisticspipes.network.abstractpackets.InventoryModuleCoordinatesPacket;
import logisticspipes.network.abstractpackets.ModernPacket;
import logisticspipes.pipes.PipeLogisticsChassi;
import logisticspipes.pipes.basic.LogisticsTileGenericPipe;
import net.minecraft.entity.player.EntityPlayer;

public class ChassiePipeModuleContent extends InventoryModuleCoordinatesPacket {

  public ChassiePipeModuleContent(int id) {
    super(id);
  }

  @Override
  public ModernPacket template() {
    return new ChassiePipeModuleContent(getId());
  }

  @Override
  public void processPacket(EntityPlayer player) {
    final LogisticsTileGenericPipe pipe = this.getPipe(player.worldObj);
    if(pipe == null) {
      return;
    }
    if(pipe.pipe instanceof PipeLogisticsChassi) {
      PipeLogisticsChassi chassie = (PipeLogisticsChassi) pipe.pipe;
      chassie.handleModuleItemIdentifierList(getIdentList());
    }
  }
}
TOP

Related Classes of logisticspipes.network.packets.pipe.ChassiePipeModuleContent

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.