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

This commit is contained in:
UbitUmarov
2018-01-27 04:32:03 +00:00
parent 3dbdacf31f
commit 13b4ce8199
7 changed files with 228 additions and 20 deletions

View File

@@ -1381,7 +1381,7 @@ namespace OpenSim.Region.ClientStack.Linden
StringBuilder lsl = LLSDxmlEncode.Start();
if(object_ids.Count == 0)
LLSDxmlEncode.AddEmpyMap(lsl);
LLSDxmlEncode.AddEmptyMap(lsl);
else
{
LLSDxmlEncode.AddMap(lsl);
@@ -1419,7 +1419,7 @@ namespace OpenSim.Region.ClientStack.Linden
StringBuilder lsl = LLSDxmlEncode.Start(512);
if(object_ids.Count == 0)
LLSDxmlEncode.AddEmpyMap(lsl);
LLSDxmlEncode.AddEmptyMap(lsl);
else
{
bool haveone = false;
@@ -1854,7 +1854,7 @@ namespace OpenSim.Region.ClientStack.Linden
StringBuilder lsl = LLSDxmlEncode.Start(names.Count * 256 + 256);
LLSDxmlEncode.AddMap(lsl);
if(names.Count == 0)
LLSDxmlEncode.AddEmpyArray("agents", lsl);
LLSDxmlEncode.AddEmptyArray("agents", lsl);
else
{
LLSDxmlEncode.AddArray("agents", lsl);