mirror of
https://github.com/opensim/opensim.git
synced 2026-08-10 19:36:07 +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
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user