aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/DataSnapshot
diff options
context:
space:
mode:
authorMelanie Thielker2008-11-17 23:43:46 +0000
committerMelanie Thielker2008-11-17 23:43:46 +0000
commit2b8915d679c9d17989572dde9f6040338c508a12 (patch)
treeecf6e8ecbf73a166ea684fdd1742360920433482 /OpenSim/Region/DataSnapshot
parentMake texture decode errors nonfatal. The texture send is simply dropped (diff)
downloadopensim-SC_OLD-2b8915d679c9d17989572dde9f6040338c508a12.zip
opensim-SC_OLD-2b8915d679c9d17989572dde9f6040338c508a12.tar.gz
opensim-SC_OLD-2b8915d679c9d17989572dde9f6040338c508a12.tar.bz2
opensim-SC_OLD-2b8915d679c9d17989572dde9f6040338c508a12.tar.xz
Make newly created prims be the correct group
Diffstat (limited to 'OpenSim/Region/DataSnapshot')
-rw-r--r--OpenSim/Region/DataSnapshot/ObjectSnapshot.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
index 12e0f0f..f032704 100644
--- a/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
+++ b/OpenSim/Region/DataSnapshot/ObjectSnapshot.cs
@@ -61,7 +61,7 @@ namespace OpenSim.Region.DataSnapshot.Providers
61 //Detect object data changes by hooking into the IClientAPI. 61 //Detect object data changes by hooking into the IClientAPI.
62 //Very dirty, and breaks whenever someone changes the client API. 62 //Very dirty, and breaks whenever someone changes the client API.
63 63
64 client.OnAddPrim += delegate (UUID ownerID, Vector3 RayEnd, Quaternion rot, 64 client.OnAddPrim += delegate (UUID ownerID, UUID groupID, Vector3 RayEnd, Quaternion rot,
65 PrimitiveBaseShape shape, byte bypassRaycast, Vector3 RayStart, UUID RayTargetID, 65 PrimitiveBaseShape shape, byte bypassRaycast, Vector3 RayStart, UUID RayTargetID,
66 byte RayEndIsIntersection) { this.Stale = true; }; 66 byte RayEndIsIntersection) { this.Stale = true; };
67 client.OnLinkObjects += delegate (IClientAPI remoteClient, uint parent, List<uint> children) 67 client.OnLinkObjects += delegate (IClientAPI remoteClient, uint parent, List<uint> children)