diff options
author | Adam Frisby | 2007-08-02 12:30:40 +0000 |
---|---|---|
committer | Adam Frisby | 2007-08-02 12:30:40 +0000 |
commit | ad03c0dc698ed65678f38ec461f0143bbd82ab2a (patch) | |
tree | d0df4ccfd0bc144077f9123cf87bd9ffa24aafe4 /OpenSim/Region/Environment/Scenes | |
parent | * Fixed Issue#249 - Terrain reverting without baking crashes the simulator. (diff) | |
download | opensim-SC_OLD-ad03c0dc698ed65678f38ec461f0143bbd82ab2a.zip opensim-SC_OLD-ad03c0dc698ed65678f38ec461f0143bbd82ab2a.tar.gz opensim-SC_OLD-ad03c0dc698ed65678f38ec461f0143bbd82ab2a.tar.bz2 opensim-SC_OLD-ad03c0dc698ed65678f38ec461f0143bbd82ab2a.tar.xz |
* Added support for CreateLink to LSL Interpreted API
* Added new "PermissionManager" which handles access to protected resources for users. (ie editing other peoples objects, etc)
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs b/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs index f52e9e2..284ae74 100644 --- a/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs +++ b/OpenSim/Region/Environment/Scenes/scripting/ScriptInterpretedAPI.cs | |||
@@ -226,9 +226,11 @@ namespace OpenSim.Region.Scripting | |||
226 | return (float)Math.Cos(theta); | 226 | return (float)Math.Cos(theta); |
227 | } | 227 | } |
228 | 228 | ||
229 | [Obsolete("Unimplemented")] | ||
230 | public void osCreateLink(Key target, int parent) | 229 | public void osCreateLink(Key target, int parent) |
231 | { | 230 | { |
231 | if(World.Entities[target] is SceneObject) | ||
232 | Task.AddNewChildPrims((SceneObject)World.Entities[target]); | ||
233 | |||
232 | return; | 234 | return; |
233 | } | 235 | } |
234 | 236 | ||