diff options
author | Teravus Ovares | 2008-05-17 00:16:16 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-05-17 00:16:16 +0000 |
commit | 349a17f664f661acf97896d4b778368edb822044 (patch) | |
tree | 24893ef56a12a7e758503c79cddcae3263ee2dbc /OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | |
parent | Formatting cleanup. (diff) | |
download | opensim-SC_OLD-349a17f664f661acf97896d4b778368edb822044.zip opensim-SC_OLD-349a17f664f661acf97896d4b778368edb822044.tar.gz opensim-SC_OLD-349a17f664f661acf97896d4b778368edb822044.tar.bz2 opensim-SC_OLD-349a17f664f661acf97896d4b778368edb822044.tar.xz |
* Tweaked patch mantis 1302 and committing it.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs index c26ff51..d35765c 100644 --- a/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs +++ b/OpenSim/Region/Environment/Scenes/SceneObjectGroup.Inventory.cs | |||
@@ -157,12 +157,12 @@ namespace OpenSim.Region.Environment.Scenes | |||
157 | /// </summary> | 157 | /// </summary> |
158 | /// <param name="localID"></param> | 158 | /// <param name="localID"></param> |
159 | /// <param name="xferManager"></param> | 159 | /// <param name="xferManager"></param> |
160 | public void RequestInventoryFile(uint localID, IXfer xferManager) | 160 | public void RequestInventoryFile(IClientAPI client, uint localID, IXfer xferManager) |
161 | { | 161 | { |
162 | SceneObjectPart part = GetChildPart(localID); | 162 | SceneObjectPart part = GetChildPart(localID); |
163 | if (part != null) | 163 | if (part != null) |
164 | { | 164 | { |
165 | part.RequestInventoryFile(xferManager); | 165 | part.RequestInventoryFile(client, xferManager); |
166 | } | 166 | } |
167 | else | 167 | else |
168 | { | 168 | { |