Unclutter rezzing methods by removing the ad hoc permissions parameters.

Thise were client supplied untrusted values we never used anyway.
This commit is contained in:
Melanie Thielker
2008-10-04 15:54:21 +00:00
parent 6bf521c7df
commit c28e8fcd67
6 changed files with 13 additions and 29 deletions

View File

@@ -53,11 +53,9 @@ namespace OpenSim.Framework
public delegate void RezObject(IClientAPI remoteClient, UUID itemID, Vector3 RayEnd, Vector3 RayStart,
UUID RayTargetID, byte BypassRayCast, bool RayEndIsIntersection,
uint EveryoneMask, uint GroupMask, uint NextOwnerMask, uint ItemFlags,
bool RezSelected, bool RemoveItem, UUID fromTaskID);
public delegate void RezSingleAttachmentFromInv(IClientAPI remoteClient, UUID itemID, uint AttachmentPt,
uint ItemFlags, uint NextOwnerMask);
public delegate void RezSingleAttachmentFromInv(IClientAPI remoteClient, UUID itemID, uint AttachmentPt);
public delegate void ObjectAttach(IClientAPI remoteClient, uint objectLocalID, uint AttachmentPt, Quaternion rot);