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
parent
ba132f3a0b
commit
4bdb4a2646
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue