a few more changes on initial objects send

This commit is contained in:
UbitUmarov
2019-03-30 12:07:49 +00:00
parent f6db9e044d
commit 6cf85a3db1
8 changed files with 120 additions and 194 deletions

View File

@@ -119,7 +119,7 @@ namespace OpenSim.Tests.Common
public event DeRezObject OnDeRezObject;
public event RezRestoreToWorld OnRezRestoreToWorld;
public event Action<IClientAPI, uint> OnRegionHandShakeReply;
public event Action<IClientAPI> OnRegionHandShakeReply;
public event GenericCall1 OnRequestWearables;
public event Action<IClientAPI, bool> OnCompleteMovementToRegion;
public event UpdateAgent OnPreAgentUpdate;
@@ -880,7 +880,7 @@ namespace OpenSim.Tests.Common
{
if (OnRegionHandShakeReply != null)
{
OnRegionHandShakeReply(this, 0);
OnRegionHandShakeReply(this);
}
}
@@ -1398,7 +1398,10 @@ namespace OpenSim.Tests.Common
{
}
public void CheckViewerCaps() { }
public uint GetViewerCaps()
{
return 0;
}
}
}