mirror of
https://github.com/opensim/opensim.git
synced 2026-08-11 20:05:33 +08:00
- 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
This commit is contained in:
@@ -3555,10 +3555,10 @@ namespace OpenSim.Region.Framework.Scenes
|
||||
|
||||
item.ID = UUID.Random();
|
||||
item.Owner = remoteClient.AgentId;
|
||||
item.AssetID = asset.Metadata.FullID;
|
||||
item.Description = asset.Metadata.Description;
|
||||
item.Name = asset.Metadata.Name;
|
||||
item.AssetType = asset.Metadata.Type;
|
||||
item.AssetID = asset.FullID;
|
||||
item.Description = asset.Description;
|
||||
item.Name = asset.Name;
|
||||
item.AssetType = asset.Type;
|
||||
item.InvType = (int)InventoryType.Object;
|
||||
item.Folder = categoryID;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user