From 0c94da830557fe17f2ff40b04031255375397717 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 22 May 2008 22:21:58 +0000 Subject: * Plug in stubbed out archiver module --- OpenSim/Region/Application/OpenSimMainConsole.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'OpenSim/Region/Application') 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 break; case "save-oar": + m_log.Error("[CONSOLE]: Don't use me - I haven't yet been sufficiently implemented!"); + if (cmdparams.Length > 0) { - m_sceneManager.SaveCurrentSceneToOar(cmdparams[0]); + m_sceneManager.SaveCurrentSceneToArchive(cmdparams[0]); } else { - m_sceneManager.SaveCurrentSceneToOar(DEFAULT_OAR_BACKUP_FILENAME); + m_sceneManager.SaveCurrentSceneToArchive(DEFAULT_OAR_BACKUP_FILENAME); } break; -- cgit v1.1