- Support specifying URL in loginParameters for connecting to OpenSim
- Patch some miscellaneous OpenSim related glitches - Add waitForRegionHandshake function - Add a concurrent promise queue - Fix xml writing of Vector3s - Fix asset downloading on grids without HTTP assets - Fix buildObject to properly orientate prims - Wrangled with CreateSelected all day and it turned out to be an OpenSim bug - LinkFrom function for faster linking - Updated LLSD library to fix LLMesh decoding
This commit is contained in:
@@ -206,6 +206,11 @@ export class InventoryFolder
|
||||
invItem.itemID = new UUID(item['item_id'].toString());
|
||||
invItem.description = item['desc'];
|
||||
invItem.type = item['type'];
|
||||
if (item['permissions']['last_owner_id'] === undefined)
|
||||
{
|
||||
// TODO: OpenSim Glitch;
|
||||
item['permissions']['last_owner_id'] = item['permissions']['owner_id'];
|
||||
}
|
||||
invItem.permissions = {
|
||||
baseMask: item['permissions']['base_mask'],
|
||||
groupMask: item['permissions']['group_mask'],
|
||||
|
||||
Reference in New Issue
Block a user