aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMW2007-08-24 21:15:23 +0000
committerMW2007-08-24 21:15:23 +0000
commit6555ffb591bb3773ac74e14e64af84a3355fc264 (patch)
treeb038d1d39ed00c71248bcc2643ff1aa9cbb512ae
parentNow also enabled Inventory persistence in standalone mode when account Authen... (diff)
downloadopensim-SC_OLD-6555ffb591bb3773ac74e14e64af84a3355fc264.zip
opensim-SC_OLD-6555ffb591bb3773ac74e14e64af84a3355fc264.tar.gz
opensim-SC_OLD-6555ffb591bb3773ac74e14e64af84a3355fc264.tar.bz2
opensim-SC_OLD-6555ffb591bb3773ac74e14e64af84a3355fc264.tar.xz
Set some default values for "create user" in case anyone just pressing return as the answer to some of the settings.
-rw-r--r--OpenSim/Region/Communications/Local/CommunicationsLocal.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs
index 417f071..c1e9efb 100644
--- a/OpenSim/Region/Communications/Local/CommunicationsLocal.cs
+++ b/OpenSim/Region/Communications/Local/CommunicationsLocal.cs
@@ -85,11 +85,11 @@ namespace OpenSim.Region.Communications.Local
85 uint regX = 1000; 85 uint regX = 1000;
86 uint regY = 1000; 86 uint regY = 1000;
87 87
88 tempfirstname = MainLog.Instance.CmdPrompt("First name"); 88 tempfirstname = MainLog.Instance.CmdPrompt("First name", "Hello");
89 templastname = MainLog.Instance.CmdPrompt("Last name"); 89 templastname = MainLog.Instance.CmdPrompt("Last name", "Everyone");
90 tempMD5Passwd = MainLog.Instance.PasswdPrompt("Password"); 90 tempMD5Passwd = MainLog.Instance.PasswdPrompt("Password");
91 regX = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region X")); 91 regX = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region X", "1000"));
92 regY = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region Y")); 92 regY = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region Y" , "1000"));
93 93
94 tempMD5Passwd = Util.Md5Hash(Util.Md5Hash(tempMD5Passwd) + ":" + ""); 94 tempMD5Passwd = Util.Md5Hash(Util.Md5Hash(tempMD5Passwd) + ":" + "");
95 95