mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
added perms checking, duplicated functionality to methods that do not require perms and have higher threat level
This commit is contained in:
committed by
Justin Clark-Casey (justincc)
parent
c677c04f10
commit
ce7694c108
@@ -400,11 +400,23 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
|
||||
/// </summary>
|
||||
void osDropAttachment();
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to drop an attachment to the ground while bypassing the script permissions
|
||||
/// </summary>
|
||||
void osForceDropAttachment();
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to drop an attachment at the specified coordinates.
|
||||
/// </summary>
|
||||
/// <param name="pos"></param>
|
||||
/// <param name="rot"></param>
|
||||
void osDropAttachmentAt(vector pos, rotation rot);
|
||||
|
||||
/// <summary>
|
||||
/// Attempts to drop an attachment at the specified coordinates while bypassing the script permissions
|
||||
/// </summary>
|
||||
/// <param name="pos"></param>
|
||||
/// <param name="rot"></param>
|
||||
void osForceDropAttachmentAt(vector pos, rotation rot);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user