aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim.RegionServer/RegionInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim.RegionServer/RegionInfo.cs')
-rw-r--r--OpenSim.RegionServer/RegionInfo.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim.RegionServer/RegionInfo.cs b/OpenSim.RegionServer/RegionInfo.cs
index d3f67ef..d17e1fd 100644
--- a/OpenSim.RegionServer/RegionInfo.cs
+++ b/OpenSim.RegionServer/RegionInfo.cs
@@ -177,7 +177,7 @@ namespace OpenSim
177 attri = configData.GetAttribute("GridServerURL"); 177 attri = configData.GetAttribute("GridServerURL");
178 if (attri == "") 178 if (attri == "")
179 { 179 {
180 this.GridURL = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Grid server URL"); 180 this.GridURL = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Grid server URL","http://127.0.0.1:8001/");
181 configData.SetAttribute("GridServerURL", this.GridURL); 181 configData.SetAttribute("GridServerURL", this.GridURL);
182 } 182 }
183 else 183 else
@@ -190,7 +190,7 @@ namespace OpenSim
190 attri = configData.GetAttribute("GridSendKey"); 190 attri = configData.GetAttribute("GridSendKey");
191 if (attri == "") 191 if (attri == "")
192 { 192 {
193 this.GridSendKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to send to grid server"); 193 this.GridSendKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to send to grid server","null");
194 configData.SetAttribute("GridSendKey", this.GridSendKey); 194 configData.SetAttribute("GridSendKey", this.GridSendKey);
195 } 195 }
196 else 196 else
@@ -203,7 +203,7 @@ namespace OpenSim
203 attri = configData.GetAttribute("GridRecvKey"); 203 attri = configData.GetAttribute("GridRecvKey");
204 if (attri == "") 204 if (attri == "")
205 { 205 {
206 this.GridRecvKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to expect from grid server"); 206 this.GridRecvKey = OpenSim.Framework.Console.MainConsole.Instance.CmdPrompt("Key to expect from grid server","null");
207 configData.SetAttribute("GridRecvKey", this.GridRecvKey); 207 configData.SetAttribute("GridRecvKey", this.GridRecvKey);
208 } 208 }
209 else 209 else