diff options
author | Teravus Ovares | 2007-11-29 15:24:31 +0000 |
---|---|---|
committer | Teravus Ovares | 2007-11-29 15:24:31 +0000 |
commit | 4bd38fc65a77826c5646c3154d087171c290cbed (patch) | |
tree | 9eb158c06ed8d2b9ce74948e8b6af820352c503c /OpenSim/Framework | |
parent | *Added more information about the sim that you're connecting to in remoting d... (diff) | |
download | opensim-SC_OLD-4bd38fc65a77826c5646c3154d087171c290cbed.zip opensim-SC_OLD-4bd38fc65a77826c5646c3154d087171c290cbed.tar.gz opensim-SC_OLD-4bd38fc65a77826c5646c3154d087171c290cbed.tar.bz2 opensim-SC_OLD-4bd38fc65a77826c5646c3154d087171c290cbed.tar.xz |
* Thanks to _SomeOne_, Server side permissions on object editing. Be aware, that if you're editing an object on your client that you're not allowed to, it'll appear that it's moving to you, but won't actually be moving on the sim.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index e94b9aa..0068761 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -211,9 +211,9 @@ namespace OpenSim.Framework | |||
211 | 211 | ||
212 | public delegate void GenericCall7(uint localID, string message); | 212 | public delegate void GenericCall7(uint localID, string message); |
213 | 213 | ||
214 | public delegate void UpdateShape(uint localID, ObjectShapePacket.ObjectDataBlock shapeBlock); | 214 | public delegate void UpdateShape(LLUUID agentID, uint localID, ObjectShapePacket.ObjectDataBlock shapeBlock); |
215 | 215 | ||
216 | public delegate void ObjectExtraParams(uint localID, ushort type, bool inUse, byte[] data); | 216 | public delegate void ObjectExtraParams(LLUUID agentID, uint localID, ushort type, bool inUse, byte[] data); |
217 | 217 | ||
218 | public delegate void ObjectSelect(uint localID, IClientAPI remoteClient); | 218 | public delegate void ObjectSelect(uint localID, IClientAPI remoteClient); |
219 | 219 | ||