diff options
-rw-r--r-- | OpenSim/Region/ClientStack/ClientView.cs | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs index dc3d810..353a24c 100644 --- a/OpenSim/Region/ClientStack/ClientView.cs +++ b/OpenSim/Region/ClientStack/ClientView.cs | |||
@@ -152,14 +152,8 @@ namespace OpenSim.Region.ClientStack | |||
152 | public void Close() | 152 | public void Close() |
153 | { | 153 | { |
154 | clientPingTimer.Stop(); | 154 | clientPingTimer.Stop(); |
155 | try | 155 | |
156 | { | 156 | m_scene.RemoveClient(AgentId); |
157 | m_scene.RemoveClient(AgentId); | ||
158 | } | ||
159 | catch (Exception e) | ||
160 | { | ||
161 | MainLog.Instance.Error("ClientView.cs:Close, exception: " + e.ToString()); | ||
162 | } | ||
163 | 157 | ||
164 | ClientThread.Abort(); | 158 | ClientThread.Abort(); |
165 | } | 159 | } |
@@ -395,4 +389,4 @@ namespace OpenSim.Region.ClientStack | |||
395 | ClientThread.Abort(); | 389 | ClientThread.Abort(); |
396 | } | 390 | } |
397 | } | 391 | } |
398 | } | 392 | } \ No newline at end of file |