aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-12-15 20:32:49 +0000
committerJustin Clarke Casey2008-12-15 20:32:49 +0000
commit41ad030a5aacaf0b0d43d08df2ff331368f88936 (patch)
tree0a03960e8bb6596e168a01d3d82727248cabbd1d /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
parent* Apply http://opensimulator.org/mantis/view.php?id=2775 with small tweaks (diff)
downloadopensim-SC_OLD-41ad030a5aacaf0b0d43d08df2ff331368f88936.zip
opensim-SC_OLD-41ad030a5aacaf0b0d43d08df2ff331368f88936.tar.gz
opensim-SC_OLD-41ad030a5aacaf0b0d43d08df2ff331368f88936.tar.bz2
opensim-SC_OLD-41ad030a5aacaf0b0d43d08df2ff331368f88936.tar.xz
* minor: method documentation and miscellaneous tidy
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/SceneObjectPart.cs15
1 files changed, 8 insertions, 7 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
index 5a43df6..10a37ee 100644
--- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs
@@ -1602,13 +1602,14 @@ if (m_shape != null) {
1602 1602
1603 public void GetProperties(IClientAPI client) 1603 public void GetProperties(IClientAPI client)
1604 { 1604 {
1605 client.SendObjectPropertiesReply(UUID.Zero, (ulong)_creationDate, _creatorID, UUID.Zero, UUID.Zero, 1605 client.SendObjectPropertiesReply(
1606 _groupID, (short)InventorySerial, _lastOwnerID, UUID, _ownerID, 1606 UUID.Zero, (ulong)_creationDate, _creatorID, UUID.Zero, UUID.Zero,
1607 ParentGroup.RootPart.TouchName, new byte[0], ParentGroup.RootPart.SitName, Name, Description, 1607 _groupID, (short)InventorySerial, _lastOwnerID, UUID, _ownerID,
1608 ParentGroup.RootPart._ownerMask, ParentGroup.RootPart._nextOwnerMask, ParentGroup.RootPart._groupMask, ParentGroup.RootPart._everyoneMask, 1608 ParentGroup.RootPart.TouchName, new byte[0], ParentGroup.RootPart.SitName, Name, Description,
1609 ParentGroup.RootPart._baseMask, 1609 ParentGroup.RootPart._ownerMask, ParentGroup.RootPart._nextOwnerMask, ParentGroup.RootPart._groupMask, ParentGroup.RootPart._everyoneMask,
1610 ParentGroup.RootPart.ObjectSaleType, 1610 ParentGroup.RootPart._baseMask,
1611 ParentGroup.RootPart.SalePrice); 1611 ParentGroup.RootPart.ObjectSaleType,
1612 ParentGroup.RootPart.SalePrice);
1612 } 1613 }
1613 1614
1614 public UUID GetRootPartUUID() 1615 public UUID GetRootPartUUID()