diff options
author | UbitUmarov | 2015-12-19 17:39:42 +0000 |
---|---|---|
committer | UbitUmarov | 2015-12-19 17:39:42 +0000 |
commit | 01a27e8c7118a09ae959c9d00832b549831169ae (patch) | |
tree | 1f149027216f68109bdce2659f5daced8e795973 /OpenSim/Region/OptionalModules/World | |
parent | a more clean enforcement of BestAvatarResponsiveness (others aren't good at m... (diff) | |
download | opensim-SC-01a27e8c7118a09ae959c9d00832b549831169ae.zip opensim-SC-01a27e8c7118a09ae959c9d00832b549831169ae.tar.gz opensim-SC-01a27e8c7118a09ae959c9d00832b549831169ae.tar.bz2 opensim-SC-01a27e8c7118a09ae959c9d00832b549831169ae.tar.xz |
establish a minimun for ReprioritizationDistance
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs | 2 |
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")) |