Package logisticspipes.network.packets.pipe

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

package logisticspipes.network.packets.pipe;

import logisticspipes.network.abstractpackets.BitSetCoordinatesPacket;
import logisticspipes.network.abstractpackets.ModernPacket;
import logisticspipes.pipes.PipeItemsFirewall;
import logisticspipes.pipes.basic.LogisticsTileGenericPipe;
import lombok.experimental.Accessors;
import net.minecraft.entity.player.EntityPlayer;

@Accessors(chain=true)
public class FireWallFlag extends BitSetCoordinatesPacket {

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

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

  @Override
  public void processPacket(EntityPlayer player) {
    final LogisticsTileGenericPipe pipe = this.getPipe(player.worldObj);
    if(pipe == null) {
      return;
    }
    if(pipe.pipe instanceof PipeItemsFirewall) {
      PipeItemsFirewall firewall = (PipeItemsFirewall) pipe.pipe;
      firewall.setFlags(getFlags());
    }
  }
}
TOP

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

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.