added perms checking, duplicated functionality to methods that do not require perms and have higher threat level

This commit is contained in:
SignpostMarv
2012-08-01 10:28:58 +01:00
committed by Justin Clark-Casey (justincc)
parent c677c04f10
commit ce7694c108
3 changed files with 86 additions and 6 deletions

View File

@@ -978,9 +978,19 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_OSSL_Functions.osDropAttachment();
}
public void osForceDropAttachment()
{
m_OSSL_Functions.osForceDropAttachment();
}
public void osDropAttachmentAt(vector pos, rotation rot)
{
m_OSSL_Functions.osDropAttachmentAt(pos, rot);
}
public void osForceDropAttachmentAt(vector pos, rotation rot)
{
m_OSSL_Functions.osForceDropAttachmentAt(pos, rot);
}
}
}