Package logisticspipes.network.packets.block

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

package logisticspipes.network.packets.block;

import logisticspipes.blocks.LogisticsSecurityTileEntity;
import logisticspipes.network.abstractpackets.ModernPacket;
import logisticspipes.network.abstractpackets.NBTCoordinatesPacket;
import net.minecraft.entity.player.EntityPlayer;

public class SaveSecurityPlayerPacket extends NBTCoordinatesPacket {

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

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

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

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

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.