diff options
author | Justin Clark-Casey (justincc) | 2012-06-14 02:30:40 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-06-14 02:30:40 +0100 |
commit | 1aa746925314dea88ab18cef6cb91072993f1bd3 (patch) | |
tree | 3d5bf42d671d9696fe289cb071a586868493abcc /OpenSim | |
parent | Fix a bug where scene objects attached as HUDs through scripts would not disa... (diff) | |
download | opensim-SC_OLD-1aa746925314dea88ab18cef6cb91072993f1bd3.zip opensim-SC_OLD-1aa746925314dea88ab18cef6cb91072993f1bd3.tar.gz opensim-SC_OLD-1aa746925314dea88ab18cef6cb91072993f1bd3.tar.bz2 opensim-SC_OLD-1aa746925314dea88ab18cef6cb91072993f1bd3.tar.xz |
correct wrong incomplete comment from previous commit 3c3ea19 in AttachmentsModule
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs index d47b1ab..b74c0ba 100644 --- a/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Attachments/AttachmentsModule.cs | |||
@@ -568,7 +568,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Attachments | |||
568 | // "[ATTACHMENTS MODULE]: Killing private HUD {0} for avatars other than {1} at attachment point {2}", | 568 | // "[ATTACHMENTS MODULE]: Killing private HUD {0} for avatars other than {1} at attachment point {2}", |
569 | // so.Name, sp.Name, so.AttachmentPoint); | 569 | // so.Name, sp.Name, so.AttachmentPoint); |
570 | 570 | ||
571 | // Remove the client from everyone in the | 571 | // As this scene object can now only be seen by the attaching avatar, tell everybody else in the |
572 | // scene that it's no longer in their awareness. | ||
572 | m_scene.ForEachClient( | 573 | m_scene.ForEachClient( |
573 | client => | 574 | client => |
574 | { if (client.AgentId != so.AttachedAvatar) | 575 | { if (client.AgentId != so.AttachedAvatar) |