dont work on null uuid textures
parent
c8b69f712f
commit
c35f8b3f1b
|
@ -120,9 +120,12 @@ namespace OpenSim.Modules.TextureFetcher
|
|||
|
||||
//Convert texture uuid list to inventar items.
|
||||
foreach (UUID texture in allTextures)
|
||||
{
|
||||
if (texture != UUID.Zero)
|
||||
{
|
||||
TaskInventoryItem item = new TaskInventoryItem();
|
||||
item.AssetID = texture;
|
||||
item.ItemID = UUID.Random();
|
||||
item.OwnerID = part.OwnerID;
|
||||
item.CurrentPermissions = 581639;
|
||||
item.Name = "tf-" + texture.ToString();
|
||||
|
@ -132,6 +135,7 @@ namespace OpenSim.Modules.TextureFetcher
|
|||
item.LastOwnerID = part.OwnerID;
|
||||
inventoryItems.Add(item);
|
||||
}
|
||||
}
|
||||
|
||||
//Check if the item is allready in the inventory and then add it.
|
||||
bool updateNeeded = false;
|
||||
|
|
Loading…
Reference in New Issue