aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
authorSean Dague2007-12-03 17:24:27 +0000
committerSean Dague2007-12-03 17:24:27 +0000
commitc29105aa3ee52e158b4c7870409165a89be4bcf6 (patch)
treec4bdf2497100bc9fb8a59635a6c0e3109d516161 /OpenSim/Region/ClientStack
parentAdded a flag to load-xml console command, that will generate new uuids for th... (diff)
downloadopensim-SC_OLD-c29105aa3ee52e158b4c7870409165a89be4bcf6.zip
opensim-SC_OLD-c29105aa3ee52e158b4c7870409165a89be4bcf6.tar.gz
opensim-SC_OLD-c29105aa3ee52e158b4c7870409165a89be4bcf6.tar.bz2
opensim-SC_OLD-c29105aa3ee52e158b4c7870409165a89be4bcf6.tar.xz
This is a simple patch which just renames an IClientAPI method to
SendInventoryItemCreateUpdate() in order to reflect the actual packet it sends (UpdateCreateInventoryItem). From Justin Casey (IBM)
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/ClientView.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/ClientView.cs b/OpenSim/Region/ClientStack/ClientView.cs
index e3a40ea..f04a70a 100644
--- a/OpenSim/Region/ClientStack/ClientView.cs
+++ b/OpenSim/Region/ClientStack/ClientView.cs
@@ -1176,7 +1176,8 @@ namespace OpenSim.Region.ClientStack
1176 OutPacket(inventoryReply, ThrottleOutPacketType.Asset); 1176 OutPacket(inventoryReply, ThrottleOutPacketType.Asset);
1177 } 1177 }
1178 1178
1179 public void SendInventoryItemUpdate(InventoryItemBase Item) 1179 /// <see>IClientAPI.SendInventoryItemCreateUpdate(InventoryItemBase)</see>
1180 public void SendInventoryItemCreateUpdate(InventoryItemBase Item)
1180 { 1181 {
1181 Encoding enc = Encoding.ASCII; 1182 Encoding enc = Encoding.ASCII;
1182 uint FULL_MASK_PERMISSIONS = 2147483647; 1183 uint FULL_MASK_PERMISSIONS = 2147483647;