aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-22 22:21:58 +0000
committerJustin Clarke Casey2008-05-22 22:21:58 +0000
commit0c94da830557fe17f2ff40b04031255375397717 (patch)
treec6512aa672c2123d035dd7a687e682af240c47b6 /OpenSim/Region/Application
parent* Add (DEPRECATED) to load-xml/save-xml region console help (diff)
downloadopensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.zip
opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.tar.gz
opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.tar.bz2
opensim-SC_OLD-0c94da830557fe17f2ff40b04031255375397717.tar.xz
* Plug in stubbed out archiver module
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r--OpenSim/Region/Application/OpenSimMainConsole.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSimMainConsole.cs b/OpenSim/Region/Application/OpenSimMainConsole.cs
index e093878..dd14c59 100644
--- a/OpenSim/Region/Application/OpenSimMainConsole.cs
+++ b/OpenSim/Region/Application/OpenSimMainConsole.cs
@@ -361,13 +361,15 @@ namespace OpenSim
361 break; 361 break;
362 362
363 case "save-oar": 363 case "save-oar":
364 m_log.Error("[CONSOLE]: Don't use me - I haven't yet been sufficiently implemented!");
365
364 if (cmdparams.Length > 0) 366 if (cmdparams.Length > 0)
365 { 367 {
366 m_sceneManager.SaveCurrentSceneToOar(cmdparams[0]); 368 m_sceneManager.SaveCurrentSceneToArchive(cmdparams[0]);
367 } 369 }
368 else 370 else
369 { 371 {
370 m_sceneManager.SaveCurrentSceneToOar(DEFAULT_OAR_BACKUP_FILENAME); 372 m_sceneManager.SaveCurrentSceneToArchive(DEFAULT_OAR_BACKUP_FILENAME);
371 } 373 }
372 break; 374 break;
373 375