diff options
author | Justin Clarke Casey | 2008-04-10 15:28:52 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-04-10 15:28:52 +0000 |
commit | ba132f3a0bbbc2f749bec9c563e169d22c76f74b (patch) | |
tree | 10f2f5622e09c41a7096e85addedf36251fc52a7 /OpenSim/Framework/Communications/IInventoryServices.cs | |
parent | * Slightly smoother transition between land, shallow water and deep water in ... (diff) | |
download | opensim-SC-ba132f3a0bbbc2f749bec9c563e169d22c76f74b.zip opensim-SC-ba132f3a0bbbc2f749bec9c563e169d22c76f74b.tar.gz opensim-SC-ba132f3a0bbbc2f749bec9c563e169d22c76f74b.tar.bz2 opensim-SC-ba132f3a0bbbc2f749bec9c563e169d22c76f74b.tar.xz |
* Minor: get CreateNewUserInventory() to return true on success
Diffstat (limited to 'OpenSim/Framework/Communications/IInventoryServices.cs')
-rw-r--r-- | OpenSim/Framework/Communications/IInventoryServices.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/Communications/IInventoryServices.cs b/OpenSim/Framework/Communications/IInventoryServices.cs index eaa2350..966ab75 100644 --- a/OpenSim/Framework/Communications/IInventoryServices.cs +++ b/OpenSim/Framework/Communications/IInventoryServices.cs | |||
@@ -66,10 +66,11 @@ namespace OpenSim.Framework.Communications | |||
66 | void DeleteInventoryItem(LLUUID userID, InventoryItemBase item); | 66 | void DeleteInventoryItem(LLUUID userID, InventoryItemBase item); |
67 | 67 | ||
68 | /// <summary> | 68 | /// <summary> |
69 | /// Create a new inventory for the given user | 69 | /// Create a new inventory for the given user. |
70 | /// </summary> | 70 | /// </summary> |
71 | /// <param name="user"></param> | 71 | /// <param name="user"></param> |
72 | void CreateNewUserInventory(LLUUID user); | 72 | /// <returns>true if the inventory was successfully created, false otherwise</returns> |
73 | bool CreateNewUserInventory(LLUUID user); | ||
73 | 74 | ||
74 | bool HasInventoryForUser(LLUUID userID); | 75 | bool HasInventoryForUser(LLUUID userID); |
75 | 76 | ||