aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/EventManager.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/EventManager.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/EventManager.cs b/OpenSim/Region/Framework/Scenes/EventManager.cs
index 004ea1f..464ead8 100644
--- a/OpenSim/Region/Framework/Scenes/EventManager.cs
+++ b/OpenSim/Region/Framework/Scenes/EventManager.cs
@@ -313,9 +313,10 @@ namespace OpenSim.Region.Framework.Scenes
313 public event EmptyScriptCompileQueue OnEmptyScriptCompileQueue; 313 public event EmptyScriptCompileQueue OnEmptyScriptCompileQueue;
314 314
315 /// <summary> 315 /// <summary>
316 /// Called whenever an object is attached, or detached 316 /// Called whenever an object is attached, or detached from an in-world presence.
317 /// from an in-world presence.
318 /// </summary> 317 /// </summary>
318 /// If the object is being attached, then the avatarID will be present. If the object is being detached then
319 /// the avatarID is UUID.Zero (I know, this doesn't make much sense but now it's historical).
319 public delegate void Attach(uint localID, UUID itemID, UUID avatarID); 320 public delegate void Attach(uint localID, UUID itemID, UUID avatarID);
320 public event Attach OnAttach; 321 public event Attach OnAttach;
321 322