aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 6aa4b40..33a06df 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -8172,13 +8172,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
8172 return true; 8172 return true;
8173 } 8173 }
8174 #endregion 8174 #endregion
8175
8176 string mapName = Util.UTF8.GetString(map.NameData.Name, 0, 8175 string mapName = Util.UTF8.GetString(map.NameData.Name, 0,
8177 map.NameData.Name.Length - 1); 8176 map.NameData.Name.Length - 1);
8178 RequestMapName handlerMapNameRequest = OnMapNameRequest; 8177 RequestMapName handlerMapNameRequest = OnMapNameRequest;
8179 if (handlerMapNameRequest != null) 8178 if (handlerMapNameRequest != null)
8180 { 8179 {
8181 handlerMapNameRequest(this, mapName); 8180 handlerMapNameRequest(this, mapName, map.AgentData.Flags);
8182 } 8181 }
8183 return true; 8182 return true;
8184 } 8183 }