diff options
author | UbitUmarov | 2014-10-18 18:27:38 +0100 |
---|---|---|
committer | UbitUmarov | 2014-10-18 18:27:38 +0100 |
commit | b7708b9d1f9cee1c10283d3178eabc2ce0c8a81a (patch) | |
tree | f3aad5ddf863954a27407695d3bac7e9e2dceb23 /OpenSim/Region/Framework/Scenes/Scene.cs | |
parent | debug makeroot timing (diff) | |
download | opensim-SC-b7708b9d1f9cee1c10283d3178eabc2ce0c8a81a.zip opensim-SC-b7708b9d1f9cee1c10283d3178eabc2ce0c8a81a.tar.gz opensim-SC-b7708b9d1f9cee1c10283d3178eabc2ce0c8a81a.tar.bz2 opensim-SC-b7708b9d1f9cee1c10283d3178eabc2ce0c8a81a.tar.xz |
change child agents creation/notification. As before this assumes that
sending regions close out of view connections.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 608f071..829d4ce 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -4080,15 +4080,15 @@ namespace OpenSim.Region.Framework.Scenes | |||
4080 | { | 4080 | { |
4081 | m_log.DebugFormat( | 4081 | m_log.DebugFormat( |
4082 | "[SCENE]: Adjusting known seeds for existing agent {0} in {1}", | 4082 | "[SCENE]: Adjusting known seeds for existing agent {0} in {1}", |
4083 | acd.AgentID, RegionInfo.RegionName); | 4083 | acd.AgentID, RegionInfo.RegionName); |
4084 | |||
4085 | sp.AdjustKnownSeeds(); | ||
4086 | 4084 | ||
4087 | if (CapsModule != null) | 4085 | if (CapsModule != null) |
4088 | { | 4086 | { |
4089 | CapsModule.SetAgentCapsSeeds(acd); | 4087 | CapsModule.SetAgentCapsSeeds(acd); |
4090 | CapsModule.CreateCaps(acd.AgentID, acd.circuitcode); | 4088 | CapsModule.CreateCaps(acd.AgentID, acd.circuitcode); |
4091 | } | 4089 | } |
4090 | |||
4091 | sp.AdjustKnownSeeds(); | ||
4092 | } | 4092 | } |
4093 | } | 4093 | } |
4094 | 4094 | ||