diff options
author | Teravus Ovares | 2008-05-18 03:32:17 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-18 03:32:17 +0000 |
commit | 529553c77e1a36d260863452e4a953908c3d845f (patch) | |
tree | 17ddc39097a5025c326de34ae0927909d04c32e5 /OpenSim/Region | |
parent | * Group type stuff. Nothing spectacular. two packets, sorta almost semi half... (diff) | |
download | opensim-SC_OLD-529553c77e1a36d260863452e4a953908c3d845f.zip opensim-SC_OLD-529553c77e1a36d260863452e4a953908c3d845f.tar.gz opensim-SC_OLD-529553c77e1a36d260863452e4a953908c3d845f.tar.bz2 opensim-SC_OLD-529553c77e1a36d260863452e4a953908c3d845f.tar.xz |
* Fixed a logic error in previous commit. Darn these long client(param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param,param); methods!
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs index a23083c..ef2934d 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectPart.cs | |||
@@ -2760,8 +2760,8 @@ namespace OpenSim.Region.Environment.Scenes | |||
2760 | public void GetProperties(IClientAPI client) | 2760 | public void GetProperties(IClientAPI client) |
2761 | { | 2761 | { |
2762 | 2762 | ||
2763 | client.SendObjectPropertiesReply(LLUUID.Zero, (ulong)CreationDate, CreatorID, LLUUID.Zero, GroupID, | 2763 | client.SendObjectPropertiesReply(LLUUID.Zero, (ulong)CreationDate, CreatorID, LLUUID.Zero, LLUUID.Zero, |
2764 | LLUUID.Zero, (short)InventorySerial, LastOwnerID, UUID, OwnerID, | 2764 | GroupID, (short)InventorySerial, LastOwnerID, UUID, OwnerID, |
2765 | ParentGroup.RootPart.TouchName, new byte[0], ParentGroup.RootPart.SitName, Name, Description, | 2765 | ParentGroup.RootPart.TouchName, new byte[0], ParentGroup.RootPart.SitName, Name, Description, |
2766 | ParentGroup.RootPart.OwnerMask, ParentGroup.RootPart.NextOwnerMask, ParentGroup.RootPart.GroupMask, ParentGroup.RootPart.EveryoneMask, | 2766 | ParentGroup.RootPart.OwnerMask, ParentGroup.RootPart.NextOwnerMask, ParentGroup.RootPart.GroupMask, ParentGroup.RootPart.EveryoneMask, |
2767 | ParentGroup.RootPart.BaseMask); | 2767 | ParentGroup.RootPart.BaseMask); |