aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Interface
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-03-13 00:04:20 +0000
committerJustin Clark-Casey (justincc)2014-03-13 00:04:20 +0000
commit873eee543192632a7febb99aa77b53d14d926674 (patch)
tree24bf475fdabf0dac18a85072a54d9ee1e61a2ef9 /OpenSim/Region/ScriptEngine/Shared/Api/Interface
parentOnly allow llBreakAllLinks() to work if script has received PERMISSION_CHANGE... (diff)
downloadopensim-SC-873eee543192632a7febb99aa77b53d14d926674.zip
opensim-SC-873eee543192632a7febb99aa77b53d14d926674.tar.gz
opensim-SC-873eee543192632a7febb99aa77b53d14d926674.tar.bz2
opensim-SC-873eee543192632a7febb99aa77b53d14d926674.tar.xz
Implement osForceBreakAllLinks().
Identical to llBreakAllLinks() except that it doesn't require the script to have link permissions.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Interface')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs5
1 files changed, 5 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 b5de355..41d13ea 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Interface/IOSSL_Api.cs
@@ -307,6 +307,11 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api.Interfaces
307 void osForceBreakLink(int linknum); 307 void osForceBreakLink(int linknum);
308 308
309 /// <summary> 309 /// <summary>
310 /// Identical to llBreakAllLinks() but does not require permission from the owner.
311 /// </summary>
312 void osForceBreakAllLinks();
313
314 /// <summary>
310 /// Check if the given key is an npc 315 /// Check if the given key is an npc
311 /// </summary> 316 /// </summary>
312 /// <param name="npc"></param> 317 /// <param name="npc"></param>