Package logisticspipes.network.packets.block

Source Code of logisticspipes.network.packets.block.SecurityStationOpenPlayerRequest

package logisticspipes.network.packets.block;

import logisticspipes.blocks.LogisticsSecurityTileEntity;
import logisticspipes.network.abstractpackets.ModernPacket;
import logisticspipes.network.abstractpackets.StringCoordinatesPacket;
import lombok.experimental.Accessors;
import net.minecraft.entity.player.EntityPlayer;

@Accessors(chain=true)
public class SecurityStationOpenPlayerRequest extends StringCoordinatesPacket {

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

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

  @Override
  public void processPacket(EntityPlayer player) {
    LogisticsSecurityTileEntity tile = this.getTile(player.worldObj, LogisticsSecurityTileEntity.class);
    if(tile != null) {
      if(getString() != null && !getString().isEmpty()) {
        tile.handleOpenSecurityPlayer(player, getString());
      }
    }
  }
}
TOP

Related Classes of logisticspipes.network.packets.block.SecurityStationOpenPlayerRequest

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.