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.
avinationmerge
Melanie 2012-07-21 20:56:19 +02:00
parent 1598f9d179
commit b1b3057adc
1 changed files with 1 additions and 1 deletions

View File

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