mirror of
https://github.com/opensim/opensim.git
synced 2026-07-14 03:15:36 +08:00
Start of Task Inventory (ie prim's inventory). For now, you can only move scripts into a prim (from your user inventory) and although the script will now show up in the prims inventory, you can't make any changes to it (or delete it). Also a prim's inventory is currently not saved between restarts.
This commit is contained in:
@@ -383,6 +383,13 @@ namespace OpenSim.Region.ClientStack
|
||||
OnXferReceive(this, xferRec.XferID.ID, xferRec.XferID.Packet, xferRec.DataPacket.Data);
|
||||
}
|
||||
break;
|
||||
case PacketType.ConfirmXferPacket:
|
||||
ConfirmXferPacketPacket confirmXfer = (ConfirmXferPacketPacket)Pack;
|
||||
if (OnConfirmXfer != null)
|
||||
{
|
||||
OnConfirmXfer(this, confirmXfer.XferID.ID, confirmXfer.XferID.Packet);
|
||||
}
|
||||
break;
|
||||
case PacketType.CreateInventoryFolder:
|
||||
if (this.OnCreateNewInventoryFolder != null)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user