aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/UDP
diff options
context:
space:
mode:
authorDiva Canto2011-05-08 22:50:04 -0700
committerDiva Canto2011-05-08 22:50:04 -0700
commitc0a69bfaab2f945f2f871ce6b93c81931ffc2f9a (patch)
tree4176bc1838bf7fde5c914805dd7c6fbcc10f1b3d /OpenSim/Region/ClientStack/Linden/UDP
parentConvert the prim count module into a permissionsmodule (diff)
downloadopensim-SC_OLD-c0a69bfaab2f945f2f871ce6b93c81931ffc2f9a.zip
opensim-SC_OLD-c0a69bfaab2f945f2f871ce6b93c81931ffc2f9a.tar.gz
opensim-SC_OLD-c0a69bfaab2f945f2f871ce6b93c81931ffc2f9a.tar.bz2
opensim-SC_OLD-c0a69bfaab2f945f2f871ce6b93c81931ffc2f9a.tar.xz
The map is seriously broken. This doesn't fix it, but at least provides one more piece of data that seems to be required -- agent flags, which seem to be different in Viewer 2. WARNING: changes IClientAPI.
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/UDP')
-rw-r--r--OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
index 025c6e6..1635a2d 100644
--- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs
@@ -8264,13 +8264,12 @@ namespace OpenSim.Region.ClientStack.LindenUDP
8264 return true; 8264 return true;
8265 } 8265 }
8266 #endregion 8266 #endregion
8267
8268 string mapName = Util.UTF8.GetString(map.NameData.Name, 0, 8267 string mapName = Util.UTF8.GetString(map.NameData.Name, 0,
8269 map.NameData.Name.Length - 1); 8268 map.NameData.Name.Length - 1);
8270 RequestMapName handlerMapNameRequest = OnMapNameRequest; 8269 RequestMapName handlerMapNameRequest = OnMapNameRequest;
8271 if (handlerMapNameRequest != null) 8270 if (handlerMapNameRequest != null)
8272 { 8271 {
8273 handlerMapNameRequest(this, mapName); 8272 handlerMapNameRequest(this, mapName, map.AgentData.Flags);
8274 } 8273 }
8275 return true; 8274 return true;
8276 } 8275 }