aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-27 10:17:20 -0700
committerJohn Hurliman2009-10-27 10:17:20 -0700
commita718d7d56a3f7d99b33f0ebc246b419aeec06308 (patch)
tree20ec78939726990f49e5af258af3ce760e905e39 /OpenSim
parentForgot a line in the previous commit (diff)
downloadopensim-SC_OLD-a718d7d56a3f7d99b33f0ebc246b419aeec06308.zip
opensim-SC_OLD-a718d7d56a3f7d99b33f0ebc246b419aeec06308.tar.gz
opensim-SC_OLD-a718d7d56a3f7d99b33f0ebc246b419aeec06308.tar.bz2
opensim-SC_OLD-a718d7d56a3f7d99b33f0ebc246b419aeec06308.tar.xz
Making the defaults for interest management variables match whether you have the [InterestManagement] section in your config or not
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 3c23c74..7c3875d 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -282,9 +282,9 @@ namespace OpenSim.Region.Framework.Scenes
282 282
283 private UpdatePrioritizationSchemes m_update_prioritization_scheme = UpdatePrioritizationSchemes.Time; 283 private UpdatePrioritizationSchemes m_update_prioritization_scheme = UpdatePrioritizationSchemes.Time;
284 private bool m_reprioritization_enabled = true; 284 private bool m_reprioritization_enabled = true;
285 private double m_reprioritization_interval = 2000.0; 285 private double m_reprioritization_interval = 5000.0;
286 private double m_root_reprioritization_distance = 5.0; 286 private double m_root_reprioritization_distance = 10.0;
287 private double m_child_reprioritization_distance = 10.0; 287 private double m_child_reprioritization_distance = 20.0;
288 288
289 private object m_deleting_scene_object = new object(); 289 private object m_deleting_scene_object = new object();
290 290