Fix intersim object give messages
parent
f317953290
commit
ccba04f345
|
@ -510,6 +510,12 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Transfer
|
||||||
user.ControllingClient.SendBulkUpdateInventory(item);
|
user.ControllingClient.SendBulkUpdateInventory(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Fix up binary bucket since this may be 17 chars long here
|
||||||
|
Byte[] bucket = new Byte[1];
|
||||||
|
bucket[0] = im.binaryBucket[0];
|
||||||
|
im.binaryBucket = bucket;
|
||||||
|
|
||||||
user.ControllingClient.SendInstantMessage(im);
|
user.ControllingClient.SendInstantMessage(im);
|
||||||
}
|
}
|
||||||
else if (im.dialog == (byte) InstantMessageDialog.InventoryAccepted ||
|
else if (im.dialog == (byte) InstantMessageDialog.InventoryAccepted ||
|
||||||
|
|
Loading…
Reference in New Issue