Implement osForceBreakAllLinks().

Identical to llBreakAllLinks() except that it doesn't require the script to have link permissions.
This commit is contained in:
Justin Clark-Casey (justincc)
2014-03-13 00:04:20 +00:00
parent 6a279feb2f
commit 873eee5431
4 changed files with 25 additions and 0 deletions

View File

@@ -552,6 +552,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_OSSL_Functions.osForceBreakLink(linknum);
}
public void osForceBreakAllLinks()
{
m_OSSL_Functions.osForceBreakAllLinks();
}
public LSL_Integer osIsNpc(LSL_Key npc)
{
return m_OSSL_Functions.osIsNpc(npc);