aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 0991171..3266703 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -1744,8 +1744,9 @@ namespace OpenSim.Region.Framework.Scenes
1744 if (sp != null) 1744 if (sp != null)
1745 { 1745 {
1746 uint attPt = (uint)sp.Appearance.GetAttachpoint(itemID); 1746 uint attPt = (uint)sp.Appearance.GetAttachpoint(itemID);
1747 SceneObjectGroup sog = m_sceneGraph.RezSingleAttachment(sp.ControllingClient, itemID, attPt); 1747 m_sceneGraph.RezSingleAttachment(sp.ControllingClient, itemID, attPt);
1748 } 1748 }
1749
1749 return false; 1750 return false;
1750 } 1751 }
1751 1752