aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-05-21 22:57:29 +0000
committerJustin Clarke Casey2008-05-21 22:57:29 +0000
commitcca1563a789c699eb79f98e14b2d40a5a612abb8 (patch)
tree03a4cf87643fadb2f5c849af1f7315a69f43998f /OpenSim/Region
parent* Provide relief for mantis 1263, 1202, 679 (diff)
downloadopensim-SC_OLD-cca1563a789c699eb79f98e14b2d40a5a612abb8.zip
opensim-SC_OLD-cca1563a789c699eb79f98e14b2d40a5a612abb8.tar.gz
opensim-SC_OLD-cca1563a789c699eb79f98e14b2d40a5a612abb8.tar.bz2
opensim-SC_OLD-cca1563a789c699eb79f98e14b2d40a5a612abb8.tar.xz
* 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
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/OpenSimMainConsole.cs4
1 files changed, 4 insertions, 0 deletions
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
289 289
290 break; 290 break;
291 case "save-xml": 291 case "save-xml":
292 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.");
293
292 if (cmdparams.Length > 0) 294 if (cmdparams.Length > 0)
293 { 295 {
294 m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]); 296 m_sceneManager.SaveCurrentSceneToXml(cmdparams[0]);
@@ -300,6 +302,8 @@ namespace OpenSim
300 break; 302 break;
301 303
302 case "load-xml": 304 case "load-xml":
305 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.");
306
303 LLVector3 loadOffset = new LLVector3(0, 0, 0); 307 LLVector3 loadOffset = new LLVector3(0, 0, 0);
304 if (cmdparams.Length > 0) 308 if (cmdparams.Length > 0)
305 { 309 {