diff --git a/YSFParrot/Network.cpp b/YSFParrot/Network.cpp index 13958e4..78a128f 100644 --- a/YSFParrot/Network.cpp +++ b/YSFParrot/Network.cpp @@ -96,6 +96,10 @@ void CNetwork::clock(unsigned int ms) return; } + // Handle incoming unlinks + if (::memcmp(buffer, "YSFU", 4U) == 0) + return; + // Handle the status command if (::memcmp(buffer, "YSFS", 4U) == 0) { unsigned char status[50U];