diff options
author | Jeff Ames | 2008-09-16 23:21:50 +0000 |
---|---|---|
committer | Jeff Ames | 2008-09-16 23:21:50 +0000 |
commit | 5c165c9bddc042f63c37193c5cdae43695415ff9 (patch) | |
tree | 3ef3f9c8e1ea7db213ea9acdcd18206ea153dfcb /OpenSim/Region/ScriptEngine/Common | |
parent | Added some terrain tests, and found a fun race condition in the sqlite (diff) | |
download | opensim-SC_OLD-5c165c9bddc042f63c37193c5cdae43695415ff9.zip opensim-SC_OLD-5c165c9bddc042f63c37193c5cdae43695415ff9.tar.gz opensim-SC_OLD-5c165c9bddc042f63c37193c5cdae43695415ff9.tar.bz2 opensim-SC_OLD-5c165c9bddc042f63c37193c5cdae43695415ff9.tar.xz |
Update svn properties, minor formatting cleanup.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common')
-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 | { |