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

This commit is contained in:
UbitUmarov
2016-09-23 18:56:47 +01:00
parent f613b5f517
commit d196958cc4

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);
});