diff options
author | Melanie | 2010-10-29 20:34:53 +0200 |
---|---|---|
committer | Melanie | 2010-10-29 20:34:53 +0200 |
commit | 3231602b885556cc5327d2a3369a1b82fb01df95 (patch) | |
tree | 7ee3735bab14110381560b1d83670a7c6d6959e1 /OpenSim/Region/CoreModules | |
parent | Add a default alpha layer (diff) | |
download | opensim-SC-3231602b885556cc5327d2a3369a1b82fb01df95.zip opensim-SC-3231602b885556cc5327d2a3369a1b82fb01df95.tar.gz opensim-SC-3231602b885556cc5327d2a3369a1b82fb01df95.tar.bz2 opensim-SC-3231602b885556cc5327d2a3369a1b82fb01df95.tar.xz |
Revert "Preliminary work on appearance layers. No user functionality yet."
This reverts commit e6a8d2872c3ff4992cd7e9615f69e0c6773e461f.
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs index 0700aa5..d429979 100644 --- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs +++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs | |||
@@ -762,14 +762,10 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess | |||
762 | // affect the name stored in the serialization, transfer | 762 | // affect the name stored in the serialization, transfer |
763 | // the correct name from the inventory to the | 763 | // the correct name from the inventory to the |
764 | // object itself before we rez. | 764 | // object itself before we rez. |
765 | // On coalesced objects, this has no effect. | 765 | rootPart.Name = item.Name; |
766 | if ((item.Flags & (uint)InventoryItemFlags.ObjectHasMultipleItems) == 0) | 766 | rootPart.Description = item.Description; |
767 | { | 767 | rootPart.ObjectSaleType = item.SaleType; |
768 | rootPart.Name = item.Name; | 768 | rootPart.SalePrice = item.SalePrice; |
769 | rootPart.Description = item.Description; | ||
770 | rootPart.ObjectSaleType = item.SaleType; | ||
771 | rootPart.SalePrice = item.SalePrice; | ||
772 | } | ||
773 | 769 | ||
774 | group.SetGroup(remoteClient.ActiveGroupId, remoteClient); | 770 | group.SetGroup(remoteClient.ActiveGroupId, remoteClient); |
775 | if ((rootPart.OwnerID != item.Owner) || | 771 | if ((rootPart.OwnerID != item.Owner) || |