aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/ScenePresence.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 68acabe..a187844 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -885,7 +885,7 @@ namespace OpenSim.Region.Framework.Scenes
885 if (!(pos.Y < 0)) 885 if (!(pos.Y < 0))
886 emergencyPos.Y = pos.Y; 886 emergencyPos.Y = pos.Y;
887 if (!(pos.Z < 0)) 887 if (!(pos.Z < 0))
888 emergencyPos.X = pos.X; 888 emergencyPos.Z = pos.Z;
889 } 889 }
890 if (pos.Y < 0) 890 if (pos.Y < 0)
891 { 891 {
@@ -903,7 +903,7 @@ namespace OpenSim.Region.Framework.Scenes
903 emergencyPos.Y = pos.Y; 903 emergencyPos.Y = pos.Y;
904 //Leave as 128 904 //Leave as 128
905 } 905 }
906 906
907 m_log.WarnFormat( 907 m_log.WarnFormat(
908 "[SCENE PRESENCE]: MakeRootAgent() was given an illegal position of {0} for avatar {1}, {2}. Substituting {3}", 908 "[SCENE PRESENCE]: MakeRootAgent() was given an illegal position of {0} for avatar {1}, {2}. Substituting {3}",
909 pos, Name, UUID, emergencyPos); 909 pos, Name, UUID, emergencyPos);
@@ -4103,6 +4103,8 @@ namespace OpenSim.Region.Framework.Scenes
4103 4103
4104 private double UpdatePriority(UpdatePriorityData data) 4104 private double UpdatePriority(UpdatePriorityData data)
4105 { 4105 {
4106// m_log.DebugFormat("[SCENE PRESENCE]: Reprioritizing updates to client {0} for {1}", Name, data.localID);
4107
4106 EntityBase entity; 4108 EntityBase entity;
4107 SceneObjectGroup group; 4109 SceneObjectGroup group;
4108 4110