aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorUbitUmarov2016-09-23 18:56:47 +0100
committerUbitUmarov2016-09-23 18:56:47 +0100
commitd196958cc4cb3da580e0bd5b807074a560b677ce (patch)
treeb556ccb400ea0e08a403d5c8dccda5bf81cb8137
parentfix caching of wind and cloud packets in the case of several regions on a ins... (diff)
downloadopensim-SC_OLD-d196958cc4cb3da580e0bd5b807074a560b677ce.zip
opensim-SC_OLD-d196958cc4cb3da580e0bd5b807074a560b677ce.tar.gz
opensim-SC_OLD-d196958cc4cb3da580e0bd5b807074a560b677ce.tar.bz2
opensim-SC_OLD-d196958cc4cb3da580e0bd5b807074a560b677ce.tar.xz
make sendRegionInfoPacketToAll really send to all ( inc child agents) thx Jak Daniels
-rw-r--r--OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs
index 425562f..87fb0db 100644
--- a/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs
+++ b/OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs
@@ -1360,7 +1360,8 @@ namespace OpenSim.Region.CoreModules.World.Estate
1360 1360
1361 public void sendRegionInfoPacketToAll() 1361 public void sendRegionInfoPacketToAll()
1362 { 1362 {
1363 Scene.ForEachRootClient(delegate(IClientAPI client) 1363// Scene.ForEachRootClient(delegate(IClientAPI client)
1364 Scene.ForEachClient(delegate(IClientAPI client)
1364 { 1365 {
1365 HandleRegionInfoRequest(client); 1366 HandleRegionInfoRequest(client);
1366 }); 1367 });