diff options
author | Melanie | 2011-11-05 22:56:08 +0000 |
---|---|---|
committer | Melanie | 2011-11-05 22:56:08 +0000 |
commit | facdc9c46e45ebd29217d7f217aec6b16048cc73 (patch) | |
tree | ce4a0ce073ae6eb087c3d47e2cf7fec1b3e25bea | |
parent | Whitespace fix from core (diff) | |
parent | Remove spammy autopilot debug (diff) | |
download | opensim-SC_OLD-facdc9c46e45ebd29217d7f217aec6b16048cc73.zip opensim-SC_OLD-facdc9c46e45ebd29217d7f217aec6b16048cc73.tar.gz opensim-SC_OLD-facdc9c46e45ebd29217d7f217aec6b16048cc73.tar.bz2 opensim-SC_OLD-facdc9c46e45ebd29217d7f217aec6b16048cc73.tar.xz |
Merge branch 'master' into bigmerge
Conflicts:
OpenSim/Region/Framework/Scenes/Scene.cs
OpenSim/Region/Framework/Scenes/ScenePresence.cs
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/Framework/Scenes/ScenePresence.cs | 6 | ||||
-rw-r--r-- | bin/OpenSimDefaults.ini | 4 |
3 files changed, 3 insertions, 10 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs index 1a3e3bb..5d4ddea 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.cs | |||
@@ -85,7 +85,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
85 | public bool m_trustBinaries; | 85 | public bool m_trustBinaries; |
86 | public bool m_allowScriptCrossings; | 86 | public bool m_allowScriptCrossings; |
87 | public bool m_useFlySlow; | 87 | public bool m_useFlySlow; |
88 | public bool m_usePreJump; | ||
89 | 88 | ||
90 | protected float m_defaultDrawDistance = 255.0f; | 89 | protected float m_defaultDrawDistance = 255.0f; |
91 | public float DefaultDrawDistance | 90 | public float DefaultDrawDistance |
@@ -671,8 +670,6 @@ namespace OpenSim.Region.Framework.Scenes | |||
671 | 670 | ||
672 | //Animation states | 671 | //Animation states |
673 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); | 672 | m_useFlySlow = startupConfig.GetBoolean("enableflyslow", false); |
674 | // TODO: Change default to true once the feature is supported | ||
675 | m_usePreJump = startupConfig.GetBoolean("enableprejump", true); | ||
676 | 673 | ||
677 | m_physicalPrim = startupConfig.GetBoolean("physical_prim", true); | 674 | m_physicalPrim = startupConfig.GetBoolean("physical_prim", true); |
678 | 675 | ||
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs index 1067b9d..76bc390 100644 --- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs +++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs | |||
@@ -1813,8 +1813,8 @@ namespace OpenSim.Region.Framework.Scenes | |||
1813 | if (SitGround) | 1813 | if (SitGround) |
1814 | StandUp(); | 1814 | StandUp(); |
1815 | 1815 | ||
1816 | m_log.DebugFormat( | 1816 | // m_log.DebugFormat( |
1817 | "[SCENE PRESENCE]: Avatar {0} received request to move to position {1} in {2}", | 1817 | // "[SCENE PRESENCE]: Avatar {0} received request to move to position {1} in {2}", |
1818 | Name, pos, m_scene.RegionInfo.RegionName); | 1818 | Name, pos, m_scene.RegionInfo.RegionName); |
1819 | 1819 | ||
1820 | if (pos.X < 0 || pos.X >= Constants.RegionSize | 1820 | if (pos.X < 0 || pos.X >= Constants.RegionSize |
@@ -1879,7 +1879,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1879 | /// </summary> | 1879 | /// </summary> |
1880 | public void ResetMoveToTarget() | 1880 | public void ResetMoveToTarget() |
1881 | { | 1881 | { |
1882 | m_log.DebugFormat("[SCENE PRESENCE]: Resetting move to target for {0}", Name); | 1882 | // m_log.DebugFormat("[SCENE PRESENCE]: Resetting move to target for {0}", Name); |
1883 | 1883 | ||
1884 | MovingToTarget = false; | 1884 | MovingToTarget = false; |
1885 | MoveToPositionTarget = Vector3.Zero; | 1885 | MoveToPositionTarget = Vector3.Zero; |
diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index a02de72..3e6a893 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini | |||
@@ -298,10 +298,6 @@ | |||
298 | ; won't look right until the physics engine supports it | 298 | ; won't look right until the physics engine supports it |
299 | ; (i.e delays takeoff for a moment) | 299 | ; (i.e delays takeoff for a moment) |
300 | 300 | ||
301 | ; This is commented so it will come on automatically once it's | ||
302 | ; supported. | ||
303 | ; enableprejump = true | ||
304 | |||
305 | ; Simulator Stats URI | 301 | ; Simulator Stats URI |
306 | ; Enable JSON simulator data by setting a URI name (case sensitive) | 302 | ; Enable JSON simulator data by setting a URI name (case sensitive) |
307 | ; Stats_URI = "jsonSimStats" | 303 | ; Stats_URI = "jsonSimStats" |