aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index f331984..377abe3 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3957,11 +3957,11 @@ namespace OpenSim.Region.Framework.Scenes
3957 } 3957 }
3958 else 3958 else
3959 presence.ControllingClient.SendShutdownConnectionNotice(); 3959 presence.ControllingClient.SendShutdownConnectionNotice();
3960 presence.ControllingClient.Close(); 3960 presence.ControllingClient.Close(false);
3961 } 3961 }
3962 else if (!childOnly) 3962 else if (!childOnly)
3963 { 3963 {
3964 presence.ControllingClient.Close(); 3964 presence.ControllingClient.Close(true);
3965 } 3965 }
3966 return true; 3966 return true;
3967 } 3967 }