Looks like we're requesting the mapblocks for every agent - including
childagents. The infrastructure is not robust enough to handle it at this time - so ignore all the MapBlock requests for childagents.afrisby
parent
f7b5c6550b
commit
0d8a2cccfd
|
@ -937,7 +937,10 @@ namespace OpenSim.Region.Environment.Scenes
|
|||
/// <param name="maxY"></param>
|
||||
public void RequestMapBlocks(IClientAPI remoteClient, int minX, int minY, int maxX, int maxY)
|
||||
{
|
||||
m_sceneGridService.RequestMapBlocks(remoteClient, minX, minY, maxX, maxX);
|
||||
if(!m_scenePresences[remoteClient.AgentId].IsChildAgent)
|
||||
{
|
||||
m_sceneGridService.RequestMapBlocks(remoteClient, minX, minY, maxX, maxX);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
|
Loading…
Reference in New Issue