aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Application/Application.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Application/Application.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs
index f16cad4..a8c40ec 100644
--- a/OpenSim/Region/Application/Application.cs
+++ b/OpenSim/Region/Application/Application.cs
@@ -52,8 +52,8 @@ namespace OpenSim
52 52
53 Console.WriteLine("Starting...\n"); 53 Console.WriteLine("Starting...\n");
54 54
55 bool sandBoxMode = false; 55 bool sandBoxMode = true;
56 bool startLoginServer = false; 56 bool startLoginServer = true;
57 string physicsEngine = "basicphysics"; 57 string physicsEngine = "basicphysics";
58 58
59 bool userAccounts = false; 59 bool userAccounts = false;
@@ -64,10 +64,10 @@ namespace OpenSim
64 64
65 for (int i = 0; i < args.Length; i++) 65 for (int i = 0; i < args.Length; i++)
66 { 66 {
67 if (args[i] == "-sandbox") 67 if (args[i] == "-gridmode")
68 { 68 {
69 sandBoxMode = true; 69 sandBoxMode = false;
70 startLoginServer = true; 70 startLoginServer = false;
71 } 71 }
72 72
73 if (args[i] == "-accounts") 73 if (args[i] == "-accounts")