Fix double-ping on logout by not sending a stop packet to the client

if the client told us it wants to log out in the first place.
This commit is contained in:
Melanie
2012-07-21 20:56:19 +02:00
parent 1598f9d179
commit b1b3057adc

View File

@@ -1516,7 +1516,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
if (!client.IsLoggingOut)
{
client.IsLoggingOut = true;
client.Close();
client.Close(false);
}
}
}