From 6555ffb591bb3773ac74e14e64af84a3355fc264 Mon Sep 17 00:00:00 2001
From: MW
Date: Fri, 24 Aug 2007 21:15:23 +0000
Subject: Set some default values for "create user" in case anyone just
 pressing return as the answer to some of the settings.

---
 OpenSim/Region/Communications/Local/CommunicationsLocal.cs | 8 ++++----
 1 file 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
                     uint regX = 1000;
                     uint regY = 1000;
 
-                    tempfirstname = MainLog.Instance.CmdPrompt("First name");
-                    templastname = MainLog.Instance.CmdPrompt("Last name");
+                    tempfirstname = MainLog.Instance.CmdPrompt("First name", "Hello");
+                    templastname = MainLog.Instance.CmdPrompt("Last name", "Everyone");
                     tempMD5Passwd = MainLog.Instance.PasswdPrompt("Password");
-                    regX = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region X"));
-                    regY = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region Y"));
+                    regX = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region X", "1000"));
+                    regY = Convert.ToUInt32(MainLog.Instance.CmdPrompt("Start Region Y" , "1000"));
 
                     tempMD5Passwd = Util.Md5Hash(Util.Md5Hash(tempMD5Passwd) + ":" + "");
 
-- 
cgit v1.1