aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-09-12 01:45:34 +0100
committerJustin Clark-Casey (justincc)2012-09-12 01:45:34 +0100
commitebb394bbdac0d7d26d4e51d5e7fbc05010ada870 (patch)
treede3595877d4febe3637d1a78578c0ab9a05e4083 /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs
parentmathematically & hypothetically speaking we want to avoid negative values bei... (diff)
downloadopensim-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 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs15
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