diff options
author | Brian McBee | 2007-08-03 18:12:55 +0000 |
---|---|---|
committer | Brian McBee | 2007-08-03 18:12:55 +0000 |
commit | c1e88d0b8cda06171cfad2eb03c7175c7ada756f (patch) | |
tree | dbe934ac720ee5a15441c48f9bbc92b054a81aea | |
parent | Changes to prepare for future possible configuration of separate logdir, conf... (diff) | |
download | opensim-SC_OLD-c1e88d0b8cda06171cfad2eb03c7175c7ada756f.zip opensim-SC_OLD-c1e88d0b8cda06171cfad2eb03c7175c7ada756f.tar.gz opensim-SC_OLD-c1e88d0b8cda06171cfad2eb03c7175c7ada756f.tar.bz2 opensim-SC_OLD-c1e88d0b8cda06171cfad2eb03c7175c7ada756f.tar.xz |
ATTENTION!!! Change to default to "sandbox" (did we come up with a better name yet?) mode. Added -gridmode switch to run that way.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 10 |
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") |