aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie Thielker2010-08-11 03:09:56 +0200
committerMelanie Thielker2010-08-11 03:09:56 +0200
commitd00a954d35c21581dfb7d06122ae329891bc7103 (patch)
treefdc5f99ef8ed3f5cbb0d4f53778e974300aab8f9 /OpenSim
parentChange chat packets to bypass the throttles. This should alleviate chat lag (diff)
downloadopensim-SC_OLD-d00a954d35c21581dfb7d06122ae329891bc7103.zip
opensim-SC_OLD-d00a954d35c21581dfb7d06122ae329891bc7103.tar.gz
opensim-SC_OLD-d00a954d35c21581dfb7d06122ae329891bc7103.tar.bz2
opensim-SC_OLD-d00a954d35c21581dfb7d06122ae329891bc7103.tar.xz
Log the state of the prejump flag
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 7e83634..7a97669 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -728,6 +728,8 @@ namespace OpenSim.Region.Framework.Scenes
728 // TODO: Change default to true once the feature is supported 728 // TODO: Change default to true once the feature is supported
729 m_usePreJump = startupConfig.GetBoolean("enableprejump", true); 729 m_usePreJump = startupConfig.GetBoolean("enableprejump", true);
730 m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys); 730 m_maxNonphys = startupConfig.GetFloat("NonPhysicalPrimMax", m_maxNonphys);
731
732 m_log.DebugFormat("[SCENE]: prejump is {0}", m_usePreJump ? "ON" : "OFF");
731 if (RegionInfo.NonphysPrimMax > 0) 733 if (RegionInfo.NonphysPrimMax > 0)
732 { 734 {
733 m_maxNonphys = RegionInfo.NonphysPrimMax; 735 m_maxNonphys = RegionInfo.NonphysPrimMax;