diff options
author | Justin Clarke Casey | 2008-12-15 20:32:49 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-12-15 20:32:49 +0000 |
commit | 41ad030a5aacaf0b0d43d08df2ff331368f88936 (patch) | |
tree | 0a03960e8bb6596e168a01d3d82727248cabbd1d /OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |
parent | * Apply http://opensimulator.org/mantis/view.php?id=2775 with small tweaks (diff) | |
download | opensim-SC-41ad030a5aacaf0b0d43d08df2ff331368f88936.zip opensim-SC-41ad030a5aacaf0b0d43d08df2ff331368f88936.tar.gz opensim-SC-41ad030a5aacaf0b0d43d08df2ff331368f88936.tar.bz2 opensim-SC-41ad030a5aacaf0b0d43d08df2ff331368f88936.tar.xz |
* minor: method documentation and miscellaneous tidy
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 15 |
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() |