diff options
author | Melanie Thielker | 2008-11-17 23:43:46 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-11-17 23:43:46 +0000 |
commit | 2b8915d679c9d17989572dde9f6040338c508a12 (patch) | |
tree | ecf6e8ecbf73a166ea684fdd1742360920433482 /OpenSim/Framework/IClientAPI.cs | |
parent | Make texture decode errors nonfatal. The texture send is simply dropped (diff) | |
download | opensim-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 '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index cf6a541..6d69c3d 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -198,7 +198,7 @@ namespace OpenSim.Framework | |||
198 | public delegate void UUIDNameRequest(UUID id, IClientAPI remote_client); | 198 | public delegate void UUIDNameRequest(UUID id, IClientAPI remote_client); |
199 | 199 | ||
200 | public delegate void AddNewPrim( | 200 | public delegate void AddNewPrim( |
201 | UUID ownerID, Vector3 RayEnd, Quaternion rot, PrimitiveBaseShape shape, byte bypassRaycast, Vector3 RayStart, | 201 | UUID ownerID, UUID groupID, Vector3 RayEnd, Quaternion rot, PrimitiveBaseShape shape, byte bypassRaycast, Vector3 RayStart, |
202 | UUID RayTargetID, | 202 | UUID RayTargetID, |
203 | byte RayEndIsIntersection); | 203 | byte RayEndIsIntersection); |
204 | 204 | ||