@SideOnly(Side.CLIENT)
  private void sendSyncPacket(byte type_, int value_) {
    ByteArrayOutputStream bos = new ByteArrayOutputStream(42);
    DataOutputStream outputStream = new DataOutputStream(bos);

    int x = tile.xCoord;
    int y = tile.yCoord;
    int z = tile.zCoord;
    int d = tile.getWorldObj().provider.dimensionId;

    System.out.println("Sending Colour:" + value_);

    try {
      outputStream.writeByte(type_);
      outputStream.writeInt(value_);
      outputStream.writeInt(x);
      outputStream.writeInt(y);
      outputStream.writeInt(z);
      outputStream.writeInt(d);
    } catch (Exception e_) {
      e_.printStackTrace();
    }

    // Packet250CustomPayload packet = new Packet250CustomPayload();
    // packet.channel = "DD_FLAG_SYNC";
    // packet.data = bos.toByteArray();
    // packet.length = bos.size();

    // PacketDispatcher.sendPacketToServer(packet);
  }