aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
diff options
context:
space:
mode:
authorUbitUmarov2018-01-27 04:32:03 +0000
committerUbitUmarov2018-01-27 04:32:03 +0000
commit13b4ce81991736cf424f598233fc43a5103cc939 (patch)
tree51966348c41505aa88363f18712421b706288654 /OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
parentLet MrOpenSim have simple hardcoded profile (diff)
downloadopensim-SC-13b4ce81991736cf424f598233fc43a5103cc939.zip
opensim-SC-13b4ce81991736cf424f598233fc43a5103cc939.tar.gz
opensim-SC-13b4ce81991736cf424f598233fc43a5103cc939.tar.bz2
opensim-SC-13b4ce81991736cf424f598233fc43a5103cc939.tar.xz
add Cap_FetchLib2 note that this is still local to regions, not using grid as it possible should, but this needs more work, and issue with HG older grids/regions
Diffstat (limited to 'OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs')
-rw-r--r--OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
index bbfe68c..b8d423f 100644
--- a/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
+++ b/OpenSim/Region/ClientStack/Linden/Caps/BunchOfCaps/BunchOfCaps.cs
@@ -1381,7 +1381,7 @@ namespace OpenSim.Region.ClientStack.Linden
1381 StringBuilder lsl = LLSDxmlEncode.Start(); 1381 StringBuilder lsl = LLSDxmlEncode.Start();
1382 1382
1383 if(object_ids.Count == 0) 1383 if(object_ids.Count == 0)
1384 LLSDxmlEncode.AddEmpyMap(lsl); 1384 LLSDxmlEncode.AddEmptyMap(lsl);
1385 else 1385 else
1386 { 1386 {
1387 LLSDxmlEncode.AddMap(lsl); 1387 LLSDxmlEncode.AddMap(lsl);
@@ -1419,7 +1419,7 @@ namespace OpenSim.Region.ClientStack.Linden
1419 StringBuilder lsl = LLSDxmlEncode.Start(512); 1419 StringBuilder lsl = LLSDxmlEncode.Start(512);
1420 1420
1421 if(object_ids.Count == 0) 1421 if(object_ids.Count == 0)
1422 LLSDxmlEncode.AddEmpyMap(lsl); 1422 LLSDxmlEncode.AddEmptyMap(lsl);
1423 else 1423 else
1424 { 1424 {
1425 bool haveone = false; 1425 bool haveone = false;
@@ -1854,7 +1854,7 @@ namespace OpenSim.Region.ClientStack.Linden
1854 StringBuilder lsl = LLSDxmlEncode.Start(names.Count * 256 + 256); 1854 StringBuilder lsl = LLSDxmlEncode.Start(names.Count * 256 + 256);
1855 LLSDxmlEncode.AddMap(lsl); 1855 LLSDxmlEncode.AddMap(lsl);
1856 if(names.Count == 0) 1856 if(names.Count == 0)
1857 LLSDxmlEncode.AddEmpyArray("agents", lsl); 1857 LLSDxmlEncode.AddEmptyArray("agents", lsl);
1858 else 1858 else
1859 { 1859 {
1860 LLSDxmlEncode.AddArray("agents", lsl); 1860 LLSDxmlEncode.AddArray("agents", lsl);