diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 2f828b0..3495305 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -2996,7 +2996,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2996 | return; | 2996 | return; |
2997 | SceneObjectGroup parentPrim = m_host.ParentGroup; | 2997 | SceneObjectGroup parentPrim = m_host.ParentGroup; |
2998 | SceneObjectPart childPrim = null; | 2998 | SceneObjectPart childPrim = null; |
2999 | switch(linknum) | 2999 | switch (linknum) |
3000 | { | 3000 | { |
3001 | case BuiltIn_Commands_BaseClass.LINK_ROOT: | 3001 | case BuiltIn_Commands_BaseClass.LINK_ROOT: |
3002 | break; | 3002 | break; |
@@ -3004,7 +3004,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
3004 | case BuiltIn_Commands_BaseClass.LINK_ALL_OTHERS: | 3004 | case BuiltIn_Commands_BaseClass.LINK_ALL_OTHERS: |
3005 | case BuiltIn_Commands_BaseClass.LINK_ALL_CHILDREN: | 3005 | case BuiltIn_Commands_BaseClass.LINK_ALL_CHILDREN: |
3006 | case BuiltIn_Commands_BaseClass.LINK_THIS: | 3006 | case BuiltIn_Commands_BaseClass.LINK_THIS: |
3007 | foreach(SceneObjectPart part in parentPrim.Children.Values) | 3007 | foreach (SceneObjectPart part in parentPrim.Children.Values) |
3008 | { | 3008 | { |
3009 | if (part.UUID != m_host.UUID) | 3009 | if (part.UUID != m_host.UUID) |
3010 | { | 3010 | { |