diff options
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneEvents.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneEvents.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneEvents.cs b/OpenSim/Region/Environment/Scenes/SceneEvents.cs index d9162d4..1117324 100644 --- a/OpenSim/Region/Environment/Scenes/SceneEvents.cs +++ b/OpenSim/Region/Environment/Scenes/SceneEvents.cs | |||
@@ -92,7 +92,7 @@ namespace OpenSim.Region.Environment.Scenes | |||
92 | 92 | ||
93 | public event SceneGroupMoved OnSceneGroupMove; | 93 | public event SceneGroupMoved OnSceneGroupMove; |
94 | 94 | ||
95 | public delegate void SceneGroupGrabed(LLUUID groupID, LLVector3 offset); | 95 | public delegate void SceneGroupGrabed(LLUUID groupID, LLVector3 offset, LLUUID userID); |
96 | 96 | ||
97 | public event SceneGroupGrabed OnSceneGroupGrab; | 97 | public event SceneGroupGrabed OnSceneGroupGrab; |
98 | 98 | ||
@@ -198,11 +198,11 @@ namespace OpenSim.Region.Environment.Scenes | |||
198 | } | 198 | } |
199 | } | 199 | } |
200 | 200 | ||
201 | public void TriggerGroupGrab(LLUUID groupID, LLVector3 offset) | 201 | public void TriggerGroupGrab(LLUUID groupID, LLVector3 offset, LLUUID userID) |
202 | { | 202 | { |
203 | if (OnSceneGroupGrab != null) | 203 | if (OnSceneGroupGrab != null) |
204 | { | 204 | { |
205 | OnSceneGroupGrab(groupID, offset); | 205 | OnSceneGroupGrab(groupID, offset, userID); |
206 | } | 206 | } |
207 | } | 207 | } |
208 | } | 208 | } |