aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
diff options
context:
space:
mode:
authorMelanie2011-04-18 20:17:29 +0100
committerMelanie2011-04-18 20:17:29 +0100
commitd1913f24295e0235ec31c1c546aece7de2209479 (patch)
tree548e2b8828d5292b05b40cc33036e77880099007 /OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
parentFix up client implementations (diff)
parentMerge branch 'master' into test-merge0418 (diff)
downloadopensim-SC_OLD-d1913f24295e0235ec31c1c546aece7de2209479.zip
opensim-SC_OLD-d1913f24295e0235ec31c1c546aece7de2209479.tar.gz
opensim-SC_OLD-d1913f24295e0235ec31c1c546aece7de2209479.tar.bz2
opensim-SC_OLD-d1913f24295e0235ec31c1c546aece7de2209479.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 9b9f280..e7e3014 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -2093,15 +2093,7 @@ namespace OpenSim.Region.Framework.Scenes
2093 2093
2094 public void GetProperties(IClientAPI client) 2094 public void GetProperties(IClientAPI client)
2095 { 2095 {
2096 //Viewer wants date in microseconds so multiply it by 1,000,000. 2096 client.SendObjectPropertiesReply(this);
2097 client.SendObjectPropertiesReply(
2098 m_fromUserInventoryItemID, (ulong)_creationDate*(ulong)1e6, _creatorID, UUID.Zero, UUID.Zero,
2099 _groupID, (short)InventorySerial, _lastOwnerID, UUID, _ownerID,
2100 ParentGroup.RootPart.TouchName, new byte[0], ParentGroup.RootPart.SitName, Name, Description,
2101 ParentGroup.RootPart._ownerMask, ParentGroup.RootPart._nextOwnerMask, ParentGroup.RootPart._groupMask, ParentGroup.RootPart._everyoneMask,
2102 ParentGroup.RootPart._baseMask,
2103 ParentGroup.RootPart.ObjectSaleType,
2104 ParentGroup.RootPart.SalePrice);
2105 } 2097 }
2106 2098
2107 public UUID GetRootPartUUID() 2099 public UUID GetRootPartUUID()