aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes
diff options
context:
space:
mode:
authorJustin Clarke Casey2007-12-22 16:45:44 +0000
committerJustin Clarke Casey2007-12-22 16:45:44 +0000
commited0f8bd5728d0fbe992cc4a1d164983edda654e8 (patch)
tree071707a559b2600101cbfe241e289f75196d555a /OpenSim/Region/Environment/Scenes
parentPut in some race revealing warning messages triggered when a user rezzes a sc... (diff)
downloadopensim-SC_OLD-ed0f8bd5728d0fbe992cc4a1d164983edda654e8.zip
opensim-SC_OLD-ed0f8bd5728d0fbe992cc4a1d164983edda654e8.tar.gz
opensim-SC_OLD-ed0f8bd5728d0fbe992cc4a1d164983edda654e8.tar.bz2
opensim-SC_OLD-ed0f8bd5728d0fbe992cc4a1d164983edda654e8.tar.xz
minor refactor
Diffstat (limited to 'OpenSim/Region/Environment/Scenes')
-rw-r--r--OpenSim/Region/Environment/Scenes/Scene.Inventory.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
index 86cb38d..efd96d2 100644
--- a/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Environment/Scenes/Scene.Inventory.cs
@@ -146,7 +146,9 @@ namespace OpenSim.Region.Environment.Scenes
146 if (transactions != null) 146 if (transactions != null)
147 { 147 {
148 LLUUID assetID = libsecondlife.LLUUID.Combine(transactionID, remoteClient.SecureSessionId); 148 LLUUID assetID = libsecondlife.LLUUID.Combine(transactionID, remoteClient.SecureSessionId);
149 AssetBase asset = AssetCache.GetAsset(assetID); 149 AssetBase asset
150 = AssetCache.GetAsset(
151 assetID, (item.assetType == (int)AssetType.Texture ? true : false));
150 152
151 if (asset == null) 153 if (asset == null)
152 { 154 {