diff options
Diffstat (limited to 'OpenSim/Region/OptionalModules')
-rw-r--r-- | OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs index 0dc47f9..f2595c8 100644 --- a/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs +++ b/OpenSim/Region/OptionalModules/World/SceneCommands/SceneCommandsModule.cs | |||
@@ -154,9 +154,9 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
154 | cdl.AddRow("animations", m_scene.DebugAnimations); | 154 | cdl.AddRow("animations", m_scene.DebugAnimations); |
155 | cdl.AddRow("appear-refresh", m_scene.SendPeriodicAppearanceUpdates); | 155 | cdl.AddRow("appear-refresh", m_scene.SendPeriodicAppearanceUpdates); |
156 | cdl.AddRow("child-repri", m_scene.ChildReprioritizationDistance); | 156 | cdl.AddRow("child-repri", m_scene.ChildReprioritizationDistance); |
157 | cdl.AddRow("client-pos-upd", m_scene.ClientPositionUpdateTolerance); | 157 | cdl.AddRow("client-pos-upd", m_scene.RootPositionUpdateTolerance); |
158 | cdl.AddRow("client-rot-upd", m_scene.ClientRotationUpdateTolerance); | 158 | cdl.AddRow("client-rot-upd", m_scene.RootRotationUpdateTolerance); |
159 | cdl.AddRow("client-vel-upd", m_scene.ClientVelocityUpdateTolerance); | 159 | cdl.AddRow("client-vel-upd", m_scene.RootVelocityUpdateTolerance); |
160 | cdl.AddRow("root-upd-per", m_scene.RootTerseUpdatePeriod); | 160 | cdl.AddRow("root-upd-per", m_scene.RootTerseUpdatePeriod); |
161 | cdl.AddRow("child-upd-per", m_scene.ChildTerseUpdatePeriod); | 161 | cdl.AddRow("child-upd-per", m_scene.ChildTerseUpdatePeriod); |
162 | cdl.AddRow("pbackup", m_scene.PeriodicBackup); | 162 | cdl.AddRow("pbackup", m_scene.PeriodicBackup); |
@@ -230,7 +230,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
230 | 230 | ||
231 | // FIXME: This can only come from the console at the moment but might not always be true. | 231 | // FIXME: This can only come from the console at the moment but might not always be true. |
232 | if (ConsoleUtil.TryParseConsoleFloat(MainConsole.Instance, options["client-pos-upd"], out newValue)) | 232 | if (ConsoleUtil.TryParseConsoleFloat(MainConsole.Instance, options["client-pos-upd"], out newValue)) |
233 | m_scene.ClientPositionUpdateTolerance = newValue; | 233 | m_scene.RootPositionUpdateTolerance = newValue; |
234 | } | 234 | } |
235 | 235 | ||
236 | if (options.ContainsKey("client-rot-upd")) | 236 | if (options.ContainsKey("client-rot-upd")) |
@@ -239,7 +239,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
239 | 239 | ||
240 | // FIXME: This can only come from the console at the moment but might not always be true. | 240 | // FIXME: This can only come from the console at the moment but might not always be true. |
241 | if (ConsoleUtil.TryParseConsoleFloat(MainConsole.Instance, options["client-rot-upd"], out newValue)) | 241 | if (ConsoleUtil.TryParseConsoleFloat(MainConsole.Instance, options["client-rot-upd"], out newValue)) |
242 | m_scene.ClientRotationUpdateTolerance = newValue; | 242 | m_scene.RootRotationUpdateTolerance = newValue; |
243 | } | 243 | } |
244 | 244 | ||
245 | if (options.ContainsKey("client-vel-upd")) | 245 | if (options.ContainsKey("client-vel-upd")) |
@@ -248,7 +248,7 @@ namespace OpenSim.Region.OptionalModules.Avatar.Attachments | |||
248 | 248 | ||
249 | // FIXME: This can only come from the console at the moment but might not always be true. | 249 | // FIXME: This can only come from the console at the moment but might not always be true. |
250 | if (ConsoleUtil.TryParseConsoleFloat(MainConsole.Instance, options["client-vel-upd"], out newValue)) | 250 | if (ConsoleUtil.TryParseConsoleFloat(MainConsole.Instance, options["client-vel-upd"], out newValue)) |
251 | m_scene.ClientVelocityUpdateTolerance = newValue; | 251 | m_scene.RootVelocityUpdateTolerance = newValue; |
252 | } | 252 | } |
253 | 253 | ||
254 | if (options.ContainsKey("root-upd-per")) | 254 | if (options.ContainsKey("root-upd-per")) |