mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 02:36:00 +08:00
ATTENTION!!! Change to default to "sandbox" (did we come up with a better name yet?) mode. Added -gridmode switch to run that way.
This commit is contained in:
@@ -52,8 +52,8 @@ namespace OpenSim
|
||||
|
||||
Console.WriteLine("Starting...\n");
|
||||
|
||||
bool sandBoxMode = false;
|
||||
bool startLoginServer = false;
|
||||
bool sandBoxMode = true;
|
||||
bool startLoginServer = true;
|
||||
string physicsEngine = "basicphysics";
|
||||
|
||||
bool userAccounts = false;
|
||||
@@ -64,10 +64,10 @@ namespace OpenSim
|
||||
|
||||
for (int i = 0; i < args.Length; i++)
|
||||
{
|
||||
if (args[i] == "-sandbox")
|
||||
if (args[i] == "-gridmode")
|
||||
{
|
||||
sandBoxMode = true;
|
||||
startLoginServer = true;
|
||||
sandBoxMode = false;
|
||||
startLoginServer = false;
|
||||
}
|
||||
|
||||
if (args[i] == "-accounts")
|
||||
|
||||
Reference in New Issue
Block a user