diff options
author | Justin Clark-Casey (justincc) | 2010-05-03 21:36:04 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-05-03 21:36:04 +0100 |
commit | 087f47589383ab63760c143f4e7ab3dbe043b325 (patch) | |
tree | da0a61bb03b5444610075e1c1102c3fee72b5313 /OpenSim/Region/DataSnapshot | |
parent | Address symptom of Mantis 4588 (though not the cause) by moving the avatar de... (diff) | |
parent | Fix some symbol errors (diff) | |
download | opensim-SC-087f47589383ab63760c143f4e7ab3dbe043b325.zip opensim-SC-087f47589383ab63760c143f4e7ab3dbe043b325.tar.gz opensim-SC-087f47589383ab63760c143f4e7ab3dbe043b325.tar.bz2 opensim-SC-087f47589383ab63760c143f4e7ab3dbe043b325.tar.xz |
Merge branch '0.6.9-post-fixes' into 0.6.9
Diffstat (limited to 'OpenSim/Region/DataSnapshot')
-rw-r--r-- | OpenSim/Region/DataSnapshot/ObjectSnapshot.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs index 76dac61..62666a4 100644 --- a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs | |||
@@ -69,7 +69,7 @@ namespace OpenSim.Region.DataSnapshot.Providers | |||
69 | byte RayEndIsIntersection) { this.Stale = true; }; | 69 | byte RayEndIsIntersection) { this.Stale = true; }; |
70 | client.OnLinkObjects += delegate (IClientAPI remoteClient, uint parent, List<uint> children) | 70 | client.OnLinkObjects += delegate (IClientAPI remoteClient, uint parent, List<uint> children) |
71 | { this.Stale = true; }; | 71 | { this.Stale = true; }; |
72 | client.OnDelinkObjects += delegate(List<uint> primIds) { this.Stale = true; }; | 72 | client.OnDelinkObjects += delegate(List<uint> primIds, IClientAPI clientApi) { this.Stale = true; }; |
73 | client.OnGrabUpdate += delegate(UUID objectID, Vector3 offset, Vector3 grapPos, | 73 | client.OnGrabUpdate += delegate(UUID objectID, Vector3 offset, Vector3 grapPos, |
74 | IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs) { this.Stale = true; }; | 74 | IClientAPI remoteClient, List<SurfaceTouchEventArgs> surfaceArgs) { this.Stale = true; }; |
75 | client.OnObjectAttach += delegate(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, | 75 | client.OnObjectAttach += delegate(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, |