diff options
author | Justin Clark-Casey (justincc) | 2010-09-25 00:51:40 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-09-25 00:51:40 +0100 |
commit | 6325fa515d92f9d425345cc81dbc576782f81d12 (patch) | |
tree | 1932fdc3ad07134c839d8aa17150bf7e0fcdfcc1 /OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-6325fa515d92f9d425345cc81dbc576782f81d12.zip opensim-SC_OLD-6325fa515d92f9d425345cc81dbc576782f81d12.tar.gz opensim-SC_OLD-6325fa515d92f9d425345cc81dbc576782f81d12.tar.bz2 opensim-SC_OLD-6325fa515d92f9d425345cc81dbc576782f81d12.tar.xz |
Add UUID to physics prim name parameter so that diagnostic messages can be made more useful.
If a separate UUID parameter is better for the future then this can be added later on.
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs index b655f39..5513584 100644 --- a/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs +++ b/OpenSim/Region/Framework/Scenes/SceneObjectGroup.cs | |||
@@ -1434,7 +1434,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1434 | 1434 | ||
1435 | part.PhysActor | 1435 | part.PhysActor |
1436 | = m_scene.PhysicsScene.AddPrimShape( | 1436 | = m_scene.PhysicsScene.AddPrimShape( |
1437 | part.Name, | 1437 | string.Format("{0}/{1}", part.Name, part.UUID), |
1438 | pbs, | 1438 | pbs, |
1439 | part.AbsolutePosition, | 1439 | part.AbsolutePosition, |
1440 | part.Scale, | 1440 | part.Scale, |