diff options
author | Justin Clark-Casey (justincc) | 2012-09-12 01:45:34 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-09-12 01:45:34 +0100 |
commit | ebb394bbdac0d7d26d4e51d5e7fbc05010ada870 (patch) | |
tree | de3595877d4febe3637d1a78578c0ab9a05e4083 /OpenSim | |
parent | mathematically & hypothetically speaking we want to avoid negative values bei... (diff) | |
download | opensim-SC_OLD-ebb394bbdac0d7d26d4e51d5e7fbc05010ada870.zip opensim-SC_OLD-ebb394bbdac0d7d26d4e51d5e7fbc05010ada870.tar.gz opensim-SC_OLD-ebb394bbdac0d7d26d4e51d5e7fbc05010ada870.tar.bz2 opensim-SC_OLD-ebb394bbdac0d7d26d4e51d5e7fbc05010ada870.tar.xz |
Fix indentation and issues where tabs were used instead of spaces in commit 783ee949
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index e528288..ac26be7 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -2022,13 +2022,14 @@ namespace OpenSim.Region.Framework.Scenes | |||
2022 | m_scene.m_linksetCapacity) | 2022 | m_scene.m_linksetCapacity) |
2023 | { | 2023 | { |
2024 | m_log.DebugFormat( | 2024 | m_log.DebugFormat( |
2025 | "[SCENE OBJECT GROUP]: Cannot link group with root" + | 2025 | "[SCENE OBJECT GROUP]: Cannot link group with root" + |
2026 | " part {0}, {1} ({2} prims) to group with root part" + | 2026 | " part {0}, {1} ({2} prims) to group with root part" + |
2027 | " {3}, {4} ({5} prims) because the new linkset" + | 2027 | " {3}, {4} ({5} prims) because the new linkset" + |
2028 | " would exceed the configured maximum of {6}", | 2028 | " would exceed the configured maximum of {6}", |
2029 | objectGroup.RootPart.Name, objectGroup.RootPart.UUID, | 2029 | objectGroup.RootPart.Name, objectGroup.RootPart.UUID, |
2030 | objectGroup.PrimCount, RootPart.Name, RootPart.UUID, | 2030 | objectGroup.PrimCount, RootPart.Name, RootPart.UUID, |
2031 | PrimCount, m_scene.m_linksetCapacity); | 2031 | PrimCount, m_scene.m_linksetCapacity); |
2032 | |||
2032 | return; | 2033 | return; |
2033 | } | 2034 | } |
2034 | 2035 | ||