return new SecurityStationAutoDestroy(getId());
  }
  @Override
  public void processPacket(EntityPlayer player) {
    LogisticsSecurityTileEntity tile = this.getTile(player.worldObj, LogisticsSecurityTileEntity.class);
    if(tile instanceof LogisticsSecurityTileEntity) {
      if(MainProxy.isClient(player.worldObj)) {
        tile.setClientDestroy(getInteger() == 1);
        handleClientSide(player);
      } else {
        tile.changeDestroy();
      }
    }
  }