aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-01 23:23:45 +0000
committerJustin Clark-Casey (justincc)2011-11-01 23:23:45 +0000
commit9456a540c50b90d2c2cdb1b556e9d6190f817426 (patch)
tree8e0de61cabd2000a25b3c35a88d082b23a79f52d /OpenSim/Region/Framework
parentAdd "show status" command to pCambot (diff)
downloadopensim-SC_OLD-9456a540c50b90d2c2cdb1b556e9d6190f817426.zip
opensim-SC_OLD-9456a540c50b90d2c2cdb1b556e9d6190f817426.tar.gz
opensim-SC_OLD-9456a540c50b90d2c2cdb1b556e9d6190f817426.tar.bz2
opensim-SC_OLD-9456a540c50b90d2c2cdb1b556e9d6190f817426.tar.xz
Add "appearance send" command to allow manual sending of appearance.
Diffstat (limited to 'OpenSim/Region/Framework')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs6
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 {