WARNING CURRENTLY BROKEN. wait for fix

This commit is contained in:
UbitUmarov
2020-10-06 19:34:27 +01:00
parent e894b4cafc
commit 41c6ff0cd7
2 changed files with 4 additions and 4 deletions

View File

@@ -299,7 +299,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
asset = m_scene.AssetService.Get(idstr);
if (asset == null)
{
{
notFound.Add(idstr);
continue;
}
@@ -332,7 +332,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
if (sb == null)
sb = new StringBuilder(512);
i = notFound.Count;
sb.Append("[HG ASSET MAPPER POST]: Missing assets:\n\t");
sb.Append("[HG ASSET MAPPER POST]: did not found embedded UUIDs as assets:\n\t");
for (int j = 0; j < notFound.Count; ++j)
{
sb.Append(notFound[j]);
@@ -347,7 +347,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
if (sb == null)
sb = new StringBuilder(512);
i = existSet.Count;
sb.Append("[HG ASSET MAPPER POST]: Already at destination server:\n\t");
sb.Append("[HG ASSET MAPPER POST]: embedded assets already at destination server:\n\t");
foreach (UUID id in existSet)
{
sb.Append(id);

View File

@@ -144,7 +144,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
protected override void OnNewClient(IClientAPI client)
{
base.OnNewClient(client);
client.OnCompleteMovementToRegion += new Action<IClientAPI, bool>(OnCompleteMovementToRegion);
client.OnCompleteMovementToRegion += OnCompleteMovementToRegion;
}
protected void OnCompleteMovementToRegion(IClientAPI client, bool arg2)