aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/OptionalModules
diff options
context:
space:
mode:
authorUbitUmarov2015-12-19 17:39:42 +0000
committerUbitUmarov2015-12-19 17:39:42 +0000
commit01a27e8c7118a09ae959c9d00832b549831169ae (patch)
tree1f149027216f68109bdce2659f5daced8e795973 /OpenSim/Region/OptionalModules
parenta more clean enforcement of BestAvatarResponsiveness (others aren't good at m... (diff)
downloadopensim-SC_OLD-01a27e8c7118a09ae959c9d00832b549831169ae.zip
opensim-SC_OLD-01a27e8c7118a09ae959c9d00832b549831169ae.tar.gz
opensim-SC_OLD-01a27e8c7118a09ae959c9d00832b549831169ae.tar.bz2
opensim-SC_OLD-01a27e8c7118a09ae959c9d00832b549831169ae.tar.xz
establish a minimun for ReprioritizationDistance
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r--OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs
index 1102aca..db5c7eb 100644
--- a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs
+++ b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs
@@ -225,7 +225,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments
225 225
226 // FIXME: This can only come from the console at the moment but might not always be true. 226 // FIXME: This can only come from the console at the moment but might not always be true.
227 if (ConsoleUtil.TryParseConsoleDouble(MainConsole.Instance, options["child-repri"], out newValue)) 227 if (ConsoleUtil.TryParseConsoleDouble(MainConsole.Instance, options["child-repri"], out newValue))
228 m_scene.ChildReprioritizationDistance = newValue; 228 m_scene.ChildReprioritizationDistance = (float)newValue;
229 } 229 }
230 230
231 if (options.ContainsKey("client-pos-upd")) 231 if (options.ContainsKey("client-pos-upd"))