diff options
author | UbitUmarov | 2016-09-23 18:56:47 +0100 |
---|---|---|
committer | UbitUmarov | 2016-09-23 18:56:47 +0100 |
commit | d196958cc4cb3da580e0bd5b807074a560b677ce (patch) | |
tree | b556ccb400ea0e08a403d5c8dccda5bf81cb8137 | |
parent | fix caching of wind and cloud packets in the case of several regions on a ins... (diff) | |
download | opensim-SC-d196958cc4cb3da580e0bd5b807074a560b677ce.zip opensim-SC-d196958cc4cb3da580e0bd5b807074a560b677ce.tar.gz opensim-SC-d196958cc4cb3da580e0bd5b807074a560b677ce.tar.bz2 opensim-SC-d196958cc4cb3da580e0bd5b807074a560b677ce.tar.xz |
make sendRegionInfoPacketToAll really send to all ( inc child agents) thx Jak Daniels
-rw-r--r-- | OpenSim/Region/CoreModules/World/Estate/EstateManagementModule.cs | 3 |
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 | }); |