diff options
author | Mike Mazur | 2009-02-17 01:36:44 +0000 |
---|---|---|
committer | Mike Mazur | 2009-02-17 01:36:44 +0000 |
commit | 76c0935ec744f2d230489398f879eb7f42b11d37 (patch) | |
tree | a68253554e3899f10b6c341db369ce4a029dfaa5 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | Major change to how appearance is managed, including changes in login and use... (diff) | |
download | opensim-SC-76c0935ec744f2d230489398f879eb7f42b11d37.zip opensim-SC-76c0935ec744f2d230489398f879eb7f42b11d37.tar.gz opensim-SC-76c0935ec744f2d230489398f879eb7f42b11d37.tar.bz2 opensim-SC-76c0935ec744f2d230489398f879eb7f42b11d37.tar.xz |
- remove the Metadata property from AssetBase and return all previous
properties as before
- prefix private variables with m_ in AssetBase.cs
- related to Mantis #3122, as mentioned in
https://lists.berlios.de/pipermail/opensim-dev/2009-February/005088.html
- all services will likely need to be upgraded after this commit
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 5badd2d..1d2f37a 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -3555,10 +3555,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
3555 | 3555 | ||
3556 | item.ID = UUID.Random(); | 3556 | item.ID = UUID.Random(); |
3557 | item.Owner = remoteClient.AgentId; | 3557 | item.Owner = remoteClient.AgentId; |
3558 | item.AssetID = asset.Metadata.FullID; | 3558 | item.AssetID = asset.FullID; |
3559 | item.Description = asset.Metadata.Description; | 3559 | item.Description = asset.Description; |
3560 | item.Name = asset.Metadata.Name; | 3560 | item.Name = asset.Name; |
3561 | item.AssetType = asset.Metadata.Type; | 3561 | item.AssetType = asset.Type; |
3562 | item.InvType = (int)InventoryType.Object; | 3562 | item.InvType = (int)InventoryType.Object; |
3563 | item.Folder = categoryID; | 3563 | item.Folder = categoryID; |
3564 | 3564 | ||