aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-11-07 23:08:51 +0000
committerJustin Clarke Casey2008-11-07 23:08:51 +0000
commit8699c2b3b9f1e15d61ff3ca1cb8ba9cce1198b86 (patch)
tree307d3a546548c6260165a9310d137cc4d73987e5 /OpenSim/Region
parent* minor: Remove mono compiler warning (diff)
downloadopensim-SC_OLD-8699c2b3b9f1e15d61ff3ca1cb8ba9cce1198b86.zip
opensim-SC_OLD-8699c2b3b9f1e15d61ff3ca1cb8ba9cce1198b86.tar.gz
opensim-SC_OLD-8699c2b3b9f1e15d61ff3ca1cb8ba9cce1198b86.tar.bz2
opensim-SC_OLD-8699c2b3b9f1e15d61ff3ca1cb8ba9cce1198b86.tar.xz
* Correct catch changed on last commit, since I just realized I started making it catch a little too much, in principle
Diffstat (limited to 'OpenSim/Region')
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index d217946..5e3396c 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -3186,7 +3186,7 @@ namespace OpenSim.Region.Environment.Scenes
3186 if (att.ParentGroup != null && !att.IsAttachment) 3186 if (att.ParentGroup != null && !att.IsAttachment)
3187 m_scene.AttachObject(ControllingClient, att.ParentGroup.LocalId, (uint)0, att.ParentGroup.GroupRotation, Vector3.Zero); 3187 m_scene.AttachObject(ControllingClient, att.ParentGroup.LocalId, (uint)0, att.ParentGroup.GroupRotation, Vector3.Zero);
3188 } 3188 }
3189 catch 3189 catch (NullReferenceException)
3190 { 3190 {
3191 } 3191 }
3192 } 3192 }