When killing a zombie session, don't send the stop packet since it often has the effect of killing a newly connected client.

This commit is contained in:
Tom Grimshaw
2010-05-17 14:14:19 -07:00
parent a003c36de5
commit 8f838c722d
10 changed files with 55 additions and 5 deletions

View File

@@ -830,6 +830,11 @@ namespace OpenSim.Region.Examples.SimpleModule
}
public void Close()
{
Close(true);
}
public void Close(bool sendStop)
{
}