aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMelanie2009-09-30 09:12:43 +0100
committerMelanie2009-09-30 09:12:43 +0100
commit94aa7e677cabe45cd0a538e430b9e9c3b825c7e9 (patch)
tree611dcfb2aa471795301c64bfb37ee32b511a41c8
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim into x-opensim (diff)
downloadopensim-SC_OLD-94aa7e677cabe45cd0a538e430b9e9c3b825c7e9.zip
opensim-SC_OLD-94aa7e677cabe45cd0a538e430b9e9c3b825c7e9.tar.gz
opensim-SC_OLD-94aa7e677cabe45cd0a538e430b9e9c3b825c7e9.tar.bz2
opensim-SC_OLD-94aa7e677cabe45cd0a538e430b9e9c3b825c7e9.tar.xz
Change command help text to show .ini in place of .xml when creating regions
-rw-r--r--OpenSim/Region/Application/OpenSim.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs
index c0bdc1e..d7a4944 100644
--- a/OpenSim/Region/Application/OpenSim.cs
+++ b/OpenSim/Region/Application/OpenSim.cs
@@ -497,7 +497,7 @@ namespace OpenSim
497 { 497 {
498 if (cmd.Length < 4) 498 if (cmd.Length < 4)
499 { 499 {
500 m_log.Error("Usage: create region <region name> <region_file.xml>"); 500 m_log.Error("Usage: create region <region name> <region_file.ini>");
501 return; 501 return;
502 } 502 }
503 if (cmd[3].EndsWith(".xml")) 503 if (cmd[3].EndsWith(".xml"))
@@ -524,7 +524,7 @@ namespace OpenSim
524 } 524 }
525 else 525 else
526 { 526 {
527 m_log.Error("Usage: create region <region name> <region_file.xml>"); 527 m_log.Error("Usage: create region <region name> <region_file.ini>");
528 return; 528 return;
529 } 529 }
530 } 530 }