Thank you kindly, A_Biondi for a patch that:

Handles the CreateItem cap request for all wearables, 
setting the proper value in inType and assType.
0.6.0-stable
Charles Krinke 2008-04-10 15:32:09 +00:00
parent ba132f3a0b
commit 4bdb4a2646
1 changed files with 13 additions and 0 deletions

View File

@ -567,6 +567,19 @@ namespace OpenSim.Region.Capabilities
inType = 19;
assType = 20;
}
else if (inventoryType == "wearable")
{
inType = 18;
switch (assetType)
{
case "bodypart":
assType = 13;
break;
case "clothing":
assType = 5;
break;
}
}
AssetBase asset;
asset = new AssetBase();