make sendRegionInfoPacketToAll really send to all ( inc child agents) thx Jak Daniels

0.9.0-post-fixes
UbitUmarov 2016-09-23 18:56:47 +01:00
parent f613b5f517
commit d196958cc4
1 changed files with 2 additions and 1 deletions

View File

@ -1360,7 +1360,8 @@ namespace OpenSim.Region.CoreModules.World.Estate
public void sendRegionInfoPacketToAll()
{
Scene.ForEachRootClient(delegate(IClientAPI client)
// Scene.ForEachRootClient(delegate(IClientAPI client)
Scene.ForEachClient(delegate(IClientAPI client)
{
HandleRegionInfoRequest(client);
});