diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 355e0ee..54956ee 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -3687,7 +3687,9 @@ namespace OpenSim.Region.Framework.Scenes | |||
3687 | "[SCENE]: Existing root scene presence detected for {0} {1} in {2} when connecting. Removing existing presence.", | 3687 | "[SCENE]: Existing root scene presence detected for {0} {1} in {2} when connecting. Removing existing presence.", |
3688 | sp.Name, sp.UUID, RegionInfo.RegionName); | 3688 | sp.Name, sp.UUID, RegionInfo.RegionName); |
3689 | 3689 | ||
3690 | sp.ControllingClient.Close(true); | 3690 | if (sp.ControllingClient != null) |
3691 | sp.ControllingClient.Close(true); | ||
3692 | |||
3691 | sp = null; | 3693 | sp = null; |
3692 | } | 3694 | } |
3693 | 3695 | ||