aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorlbsa712007-12-13 14:47:44 +0000
committerlbsa712007-12-13 14:47:44 +0000
commit1cf427886202711f163b62b4b12abb117b50ba07 (patch)
tree0acfba8cc2ded6eb0f9ec614ee876a15ab5a1460 /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
parentFix for #176 (... doesn't appear in chat bubbles). This also gets the viewer ... (diff)
downloadopensim-SC_OLD-1cf427886202711f163b62b4b12abb117b50ba07.zip
opensim-SC_OLD-1cf427886202711f163b62b4b12abb117b50ba07.tar.gz
opensim-SC_OLD-1cf427886202711f163b62b4b12abb117b50ba07.tar.bz2
opensim-SC_OLD-1cf427886202711f163b62b4b12abb117b50ba07.tar.xz
* Debugging Shape
* Adding namesetting to Create
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index abdbe4d..6bb00cb 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -782,6 +782,9 @@ namespace OpenSim.Region.Environment.Scenes
782 PrimitiveBaseShape shape = PrimitiveBaseShape.Create(); 782 PrimitiveBaseShape shape = PrimitiveBaseShape.Create();
783 part.Shape = shape; 783 part.Shape = shape;
784 784
785 part.Name = "Primitive";
786 part.OwnerID = LLUUID.Random();
787
785 return part; 788 return part;
786 } 789 }
787 790