diff options
author | Justin Clark-Casey (justincc) | 2010-04-16 23:15:13 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-04-16 23:15:13 +0100 |
commit | 57c293d604874c8033a602d1cea6f5250769ff14 (patch) | |
tree | e5da635f17ceba90715e8910612b83ea4a0f2dc6 /OpenSim/Region/Framework/Scenes/SceneGraph.cs | |
parent | minor: correctly print out missing item id when it can't be found rather than... (diff) | |
download | opensim-SC-57c293d604874c8033a602d1cea6f5250769ff14.zip opensim-SC-57c293d604874c8033a602d1cea6f5250769ff14.tar.gz opensim-SC-57c293d604874c8033a602d1cea6f5250769ff14.tar.bz2 opensim-SC-57c293d604874c8033a602d1cea6f5250769ff14.tar.xz |
refactor: crudely move DetachSingleAttachmentToGround() over to the AttachmentsModule
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneGraph.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneGraph.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneGraph.cs b/OpenSim/Region/Framework/Scenes/SceneGraph.cs index 23a4ee9..89eb54d 100644 --- a/OpenSim/Region/Framework/Scenes/SceneGraph.cs +++ b/OpenSim/Region/Framework/Scenes/SceneGraph.cs | |||
@@ -443,9 +443,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
443 | { | 443 | { |
444 | SceneObjectGroup group = GetGroupByPrim(objectLocalID); | 444 | SceneObjectGroup group = GetGroupByPrim(objectLocalID); |
445 | if (group != null) | 445 | if (group != null) |
446 | { | 446 | m_parentScene.AttachmentsModule.DetachSingleAttachmentToGround(group.UUID, remoteClient); |
447 | m_parentScene.DetachSingleAttachmentToGround(group.UUID, remoteClient); | ||
448 | } | ||
449 | } | 447 | } |
450 | 448 | ||
451 | protected internal void DetachObject(uint objectLocalID, IClientAPI remoteClient) | 449 | protected internal void DetachObject(uint objectLocalID, IClientAPI remoteClient) |