aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
diff options
context:
space:
mode:
authorlbsa712007-09-21 06:00:34 +0000
committerlbsa712007-09-21 06:00:34 +0000
commit34043cd35143a25fb48412026b3a6ccb2c030255 (patch)
tree974eea2cab153dc6e3c8616292afa1a152aad38c /OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
parent* Yeah, I placed Close() in the wrong file. So sue me. (diff)
downloadopensim-SC_OLD-34043cd35143a25fb48412026b3a6ccb2c030255.zip
opensim-SC_OLD-34043cd35143a25fb48412026b3a6ccb2c030255.tar.gz
opensim-SC_OLD-34043cd35143a25fb48412026b3a6ccb2c030255.tar.bz2
opensim-SC_OLD-34043cd35143a25fb48412026b3a6ccb2c030255.tar.xz
* Slowly but surely working my way towards Regionality...
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
index 91b9634..43a9d86 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.PacketHandlers.cs
@@ -504,12 +504,12 @@ namespace OpenSim.Region.Environment.Scenes
504 } 504 }
505 } 505 }
506 506
507 public void StartAnimation(IClientAPI client, LLUUID animID, int seq) 507 public void StartAnimation(LLUUID animID, int seq, LLUUID agentId)
508 { 508 {
509 ForEachScenePresence(delegate(ScenePresence presence) 509 Broadcast(delegate(IClientAPI client)
510 { 510 {
511 presence.ControllingClient.SendAnimation(animID, seq, client.AgentId); 511 client.SendAnimation(animID, seq, agentId);
512 }); 512 });
513 } 513 }
514 514
515 public virtual void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient) 515 public virtual void ProcessObjectGrab(uint localID, LLVector3 offsetPos, IClientAPI remoteClient)