diff options
Changed the asynchronous call to get inventory in HG, so that it properly reports problems. OGS1 should also be changed, but I'm leaving it as is for now. RestSessionObjectPosterResponse is fairly broken and should not be used.
Minor changes in Get inventory item in HGAssetMapper.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces')
-rw-r--r-- | OpenSim/Region/Framework/Interfaces/IInterregionComms.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IInterregionComms.cs b/OpenSim/Region/Framework/Interfaces/IInterregionComms.cs index b57b5ed..b5a9395 100644 --- a/OpenSim/Region/Framework/Interfaces/IInterregionComms.cs +++ b/OpenSim/Region/Framework/Interfaces/IInterregionComms.cs | |||
@@ -91,11 +91,11 @@ namespace OpenSim.Region.Framework.Interfaces | |||
91 | 91 | ||
92 | /// <summary> | 92 | /// <summary> |
93 | /// Create an object from the user's inventory in the destination region. | 93 | /// Create an object from the user's inventory in the destination region. |
94 | /// This message is used primarily for prim crossing. | 94 | /// This message is used primarily by clients. |
95 | /// </summary> | 95 | /// </summary> |
96 | /// <param name="regionHandle"></param> | 96 | /// <param name="regionHandle"></param> |
97 | /// <param name="sog"></param> | 97 | /// <param name="userID"></param> |
98 | /// <param name="isLocalCall"></param> | 98 | /// <param name="itemID"></param> |
99 | /// <returns></returns> | 99 | /// <returns></returns> |
100 | bool SendCreateObject(ulong regionHandle, UUID userID, UUID itemID); | 100 | bool SendCreateObject(ulong regionHandle, UUID userID, UUID itemID); |
101 | 101 | ||