aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
diff options
context:
space:
mode:
authorroot2011-07-09 01:06:46 +0100
committerroot2011-07-09 01:06:46 +0100
commitc920ff9d1d5840fb6b36efd46e8bec431cc5d15f (patch)
tree4b804cf4255f4a8eaa2789cce97154a418f6e0b5 /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
parentRemove another core SNAFU. AbsolutePosition is NOT equal to group position (diff)
parentInstance-types-in-list fix for LSL/OSSL functions. This will fix llListFindLi... (diff)
downloadopensim-SC_OLD-c920ff9d1d5840fb6b36efd46e8bec431cc5d15f.zip
opensim-SC_OLD-c920ff9d1d5840fb6b36efd46e8bec431cc5d15f.tar.gz
opensim-SC_OLD-c920ff9d1d5840fb6b36efd46e8bec431cc5d15f.tar.bz2
opensim-SC_OLD-c920ff9d1d5840fb6b36efd46e8bec431cc5d15f.tar.xz
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index ecf10e4..99552f1 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -7614,13 +7614,13 @@ namespace OpenSim.Region.ClientStack.LindenUDP
7614 IInventoryAccessModule invAccess = m_scene.RequestModuleInterface<IInventoryAccessModule>(); 7614 IInventoryAccessModule invAccess = m_scene.RequestModuleInterface<IInventoryAccessModule>();
7615 if (invAccess != null) 7615 if (invAccess != null)
7616 { 7616 {
7617 if (!invAccess.GetAgentInventoryItem(this, itemID, requestID)) 7617 if (!invAccess.CanGetAgentInventoryItem(this, itemID, requestID))
7618 return false; 7618 return false;
7619
7620 } 7619 }
7621 else 7620 else
7621 {
7622 return false; 7622 return false;
7623 7623 }
7624 } 7624 }
7625 } 7625 }
7626 } 7626 }
@@ -7634,7 +7634,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
7634 { 7634 {
7635 AssetUploadRequestPacket request = (AssetUploadRequestPacket)Pack; 7635 AssetUploadRequestPacket request = (AssetUploadRequestPacket)Pack;
7636 7636
7637
7638 // m_log.Debug("upload request " + request.ToString()); 7637 // m_log.Debug("upload request " + request.ToString());
7639 // m_log.Debug("upload request was for assetid: " + request.AssetBlock.TransactionID.Combine(this.SecureSessionId).ToString()); 7638 // m_log.Debug("upload request was for assetid: " + request.AssetBlock.TransactionID.Combine(this.SecureSessionId).ToString());
7640 UUID temp = UUID.Combine(request.AssetBlock.TransactionID, SecureSessionId); 7639 UUID temp = UUID.Combine(request.AssetBlock.TransactionID, SecureSessionId);