mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
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.
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user