aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
diff options
context:
space:
mode:
authorSignpostMarv2012-08-01 10:28:58 +0100
committerJustin Clark-Casey (justincc)2012-10-02 22:14:46 +0100
commitce7694c108e8abf2e52a0b0167eab3d550f364ab (patch)
tree9233f757a1b8631b3dea35ae0124df4886a21659 /OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
parentfixing copypasta (diff)
downloadopensim-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/IOSSL_Api.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs12
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}