aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 2c12b01..d2e0726 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -1103,7 +1103,10 @@ namespace OpenSim.Region.Framework.Scenes
1103 { 1103 {
1104 CheckLandingPoint(ref newpos); 1104 CheckLandingPoint(ref newpos);
1105 AbsolutePosition = newpos; 1105 AbsolutePosition = newpos;
1106/* 1106
1107
1108 m_log.DebugFormat("[avnLocalTeleport] {0} {1}", newpos, rotateToVelXY);
1109
1107 if (newvel.HasValue) 1110 if (newvel.HasValue)
1108 { 1111 {
1109 if (newvel == Vector3.Zero) 1112 if (newvel == Vector3.Zero)
@@ -1130,7 +1133,7 @@ namespace OpenSim.Region.Framework.Scenes
1130 m_velocity = (Vector3)newvel; 1133 m_velocity = (Vector3)newvel;
1131 } 1134 }
1132 } 1135 }
1133*/ 1136
1134 SendTerseUpdateToAllClients(); 1137 SendTerseUpdateToAllClients();
1135 } 1138 }
1136 1139