diff options
author | SignpostMarv | 2012-08-01 10:28:58 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-10-02 22:14:46 +0100 |
commit | ce7694c108e8abf2e52a0b0167eab3d550f364ab (patch) | |
tree | 9233f757a1b8631b3dea35ae0124df4886a21659 /OpenSim/Region/ScriptEngine/Shared/Api/Interface | |
parent | fixing copypasta (diff) | |
download | opensim-SC_OLD-ce7694c108e8abf2e52a0b0167eab3d550f364ab.zip opensim-SC_OLD-ce7694c108e8abf2e52a0b0167eab3d550f364ab.tar.gz opensim-SC_OLD-ce7694c108e8abf2e52a0b0167eab3d550f364ab.tar.bz2 opensim-SC_OLD-ce7694c108e8abf2e52a0b0167eab3d550f364ab.tar.xz |
added perms checking, duplicated functionality to methods that do not require perms and have higher threat level
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs index e28473d..93188c9 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs | |||
@@ -401,10 +401,22 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces | |||
401 | void osDropAttachment(); | 401 | void osDropAttachment(); |
402 | 402 | ||
403 | /// <summary> | 403 | /// <summary> |
404 | /// Attempts to drop an attachment to the ground while bypassing the script permissions | ||
405 | /// </summary> | ||
406 | void osForceDropAttachment(); | ||
407 | |||
408 | /// <summary> | ||
404 | /// Attempts to drop an attachment at the specified coordinates. | 409 | /// Attempts to drop an attachment at the specified coordinates. |
405 | /// </summary> | 410 | /// </summary> |
406 | /// <param name="pos"></param> | 411 | /// <param name="pos"></param> |
407 | /// <param name="rot"></param> | 412 | /// <param name="rot"></param> |
408 | void osDropAttachmentAt(vector pos, rotation rot); | 413 | void osDropAttachmentAt(vector pos, rotation rot); |
414 | |||
415 | /// <summary> | ||
416 | /// Attempts to drop an attachment at the specified coordinates while bypassing the script permissions | ||
417 | /// </summary> | ||
418 | /// <param name="pos"></param> | ||
419 | /// <param name="rot"></param> | ||
420 | void osForceDropAttachmentAt(vector pos, rotation rot); | ||
409 | } | 421 | } |
410 | } | 422 | } |