aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.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/Runtime/OSSL_Stub.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 '')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
index bae5594..dee1b28 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/OSSL_Stub.cs
@@ -978,9 +978,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
978 m_OSSL_Functions.osDropAttachment(); 978 m_OSSL_Functions.osDropAttachment();
979 } 979 }
980 980
981 public void osForceDropAttachment()
982 {
983 m_OSSL_Functions.osForceDropAttachment();
984 }
985
981 public void osDropAttachmentAt(vector pos, rotation rot) 986 public void osDropAttachmentAt(vector pos, rotation rot)
982 { 987 {
983 m_OSSL_Functions.osDropAttachmentAt(pos, rot); 988 m_OSSL_Functions.osDropAttachmentAt(pos, rot);
984 } 989 }
990
991 public void osForceDropAttachmentAt(vector pos, rotation rot)
992 {
993 m_OSSL_Functions.osForceDropAttachmentAt(pos, rot);
994 }
985 } 995 }
986} 996}