From bb0806c61e545b6509843ed0258475e47d4bb273 Mon Sep 17 00:00:00 2001 From: Tom Grimshaw Date: Tue, 18 May 2010 03:44:09 -0700 Subject: [PATCH] Don't send kill packets to child agents as we close them --- OpenSim/Region/Framework/Scenes/Scene.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index f331984d37..377abe3e85 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs @@ -3957,11 +3957,11 @@ namespace OpenSim.Region.Framework.Scenes } else presence.ControllingClient.SendShutdownConnectionNotice(); - presence.ControllingClient.Close(); + presence.ControllingClient.Close(false); } else if (!childOnly) { - presence.ControllingClient.Close(); + presence.ControllingClient.Close(true); } return true; }