From cca1563a789c699eb79f98e14b2d40a5a612abb8 Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Wed, 21 May 2008 22:57:29 +0000 Subject: * Deprecate load-xml and save-xml in favour of load-xml2/save-xml2. * Please file a mantis if you are not able to use load-xml2/save-xml2 but can successfully use load-xml/save-xml --- OpenSim/Region/Application/OpenSimMainConsole.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/OpenSim/Region/Application/OpenSimMainConsole.cs b/OpenSim/Region/Application/OpenSimMainConsole.cs index 1b2600c..9350d7b 100644 --- a/OpenSim/Region/Application/OpenSimMainConsole.cs +++ b/OpenSim/Region/Application/OpenSimMainConsole.cs @@ -289,6 +289,8 @@ namespace OpenSim break; case "save-xml": + m_log.Error("[CONSOLE]: PLEASE NOTE, save-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use save-xml2, please file a mantis detailing the reason."); + if (cmdparams.Length > 0) { m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]); @@ -300,6 +302,8 @@ namespace OpenSim break; case "load-xml": + m_log.Error("[CONSOLE]: PLEASE NOTE, load-xml is DEPRECATED and may be REMOVED soon. If you are using this and there is some reason you can't use load-xml2, please file a mantis detailing the reason."); + LLVector3 loadOffset = new LLVector3(0, 0, 0); if (cmdparams.Length > 0) { -- cgit v1.1