diff options
author | UbitUmarov | 2014-10-20 09:14:27 +0100 |
---|---|---|
committer | UbitUmarov | 2014-10-20 09:14:27 +0100 |
commit | afa9b4a002f0cc929d60e1770535eefcdefe3a43 (patch) | |
tree | 8e5f9fd00aa720759c7ba2a5383f681d01349448 /OpenSim/Region/Framework/Scenes | |
parent | try to fix propagation of seeds to all relevante regions (diff) | |
download | opensim-SC-afa9b4a002f0cc929d60e1770535eefcdefe3a43.zip opensim-SC-afa9b4a002f0cc929d60e1770535eefcdefe3a43.tar.gz opensim-SC-afa9b4a002f0cc929d60e1770535eefcdefe3a43.tar.bz2 opensim-SC-afa9b4a002f0cc929d60e1770535eefcdefe3a43.tar.xz |
Assume childreen don't need to know caps seeds
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 405ad73..754dd96 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -4262,6 +4262,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
4262 | // DrawDistance = cAgent.Far; | 4262 | // DrawDistance = cAgent.Far; |
4263 | DrawDistance = Scene.DefaultDrawDistance; | 4263 | DrawDistance = Scene.DefaultDrawDistance; |
4264 | 4264 | ||
4265 | if (cAgent.ChildrenCapSeeds != null && cAgent.ChildrenCapSeeds.Count > 0) | ||
4266 | { | ||
4267 | if (Scene.CapsModule != null) | ||
4268 | { | ||
4269 | Scene.CapsModule.SetChildrenSeed(UUID, cAgent.ChildrenCapSeeds); | ||
4270 | } | ||
4271 | KnownRegions = cAgent.ChildrenCapSeeds; | ||
4272 | } | ||
4273 | |||
4265 | if ((cAgent.Throttles != null) && cAgent.Throttles.Length > 0) | 4274 | if ((cAgent.Throttles != null) && cAgent.Throttles.Length > 0) |
4266 | ControllingClient.SetChildAgentThrottle(cAgent.Throttles); | 4275 | ControllingClient.SetChildAgentThrottle(cAgent.Throttles); |
4267 | 4276 | ||