aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs11
1 files changed, 9 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 481bb91..0d55575 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -10601,11 +10601,18 @@ namespace OpenSim.Region.ClientStack.LindenUDP
10601 MapItemRequest handlerMapItemRequest = OnMapItemRequest; 10601 MapItemRequest handlerMapItemRequest = OnMapItemRequest;
10602 if (handlerMapItemRequest != null) 10602 if (handlerMapItemRequest != null)
10603 { 10603 {
10604 handlerMapItemRequest(this, mirpk.AgentData.Flags, mirpk.AgentData.EstateID, 10604 try
10605 {
10606 handlerMapItemRequest(this, mirpk.AgentData.Flags, mirpk.AgentData.EstateID,
10605 mirpk.AgentData.Godlike, mirpk.RequestData.ItemType, 10607 mirpk.AgentData.Godlike, mirpk.RequestData.ItemType,
10606 mirpk.RequestData.RegionHandle); 10608 mirpk.RequestData.RegionHandle);
10607 10609 }
10610 catch( Exception e)
10611 {
10612 m_log.ErrorFormat("{0} HandleMapItemRequest exception: {1}", LogHeader, e.Message);
10613 }
10608 } 10614 }
10615
10609 return true; 10616 return true;
10610 } 10617 }
10611 10618