Don't send kill packets to child agents as we close them

avinationmerge
Tom Grimshaw 2010-05-18 03:44:09 -07:00
parent 1c040d8c1e
commit bb0806c61e
1 changed files with 2 additions and 2 deletions

View File

@ -3957,11 +3957,11 @@ namespace OpenSim.Region.Framework.Scenes
} }
else else
presence.ControllingClient.SendShutdownConnectionNotice(); presence.ControllingClient.SendShutdownConnectionNotice();
presence.ControllingClient.Close(); presence.ControllingClient.Close(false);
} }
else if (!childOnly) else if (!childOnly)
{ {
presence.ControllingClient.Close(); presence.ControllingClient.Close(true);
} }
return true; return true;
} }