diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index bb820aa..29966f9 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -2575,7 +2575,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
2575 | // only send update from root agents to other clients; children are only "listening posts" | 2575 | // only send update from root agents to other clients; children are only "listening posts" |
2576 | if (IsChildAgent) | 2576 | if (IsChildAgent) |
2577 | { | 2577 | { |
2578 | m_log.Warn("[SCENE PRESENCE] attempt to send avatar data from a child agent"); | 2578 | m_log.Warn("[SCENE PRESENCE]: Attempt to send avatar data from a child agent"); |
2579 | return; | 2579 | return; |
2580 | } | 2580 | } |
2581 | 2581 | ||
@@ -2632,10 +2632,10 @@ namespace OpenSim.Region.Framework.Scenes | |||
2632 | // only send update from root agents to other clients; children are only "listening posts" | 2632 | // only send update from root agents to other clients; children are only "listening posts" |
2633 | if (IsChildAgent) | 2633 | if (IsChildAgent) |
2634 | { | 2634 | { |
2635 | m_log.Warn("[SCENE PRESENCE] attempt to send avatar data from a child agent"); | 2635 | m_log.Warn("[SCENE PRESENCE]: Attempt to send avatar data from a child agent"); |
2636 | return; | 2636 | return; |
2637 | } | 2637 | } |
2638 | 2638 | ||
2639 | int count = 0; | 2639 | int count = 0; |
2640 | m_scene.ForEachScenePresence(delegate(ScenePresence scenePresence) | 2640 | m_scene.ForEachScenePresence(delegate(ScenePresence scenePresence) |
2641 | { | 2641 | { |