diff options
author | MW | 2007-08-06 16:33:54 +0000 |
---|---|---|
committer | MW | 2007-08-06 16:33:54 +0000 |
commit | 4c9cc74ac263d1d99177e8024e51c86d826b9d7a (patch) | |
tree | c52df358eefc1686f361bbee168396f3ff3b1a8a /OpenSim/Region/Application/Application.cs | |
parent | * yet another mini-shape-commit (diff) | |
download | opensim-SC_OLD-4c9cc74ac263d1d99177e8024e51c86d826b9d7a.zip opensim-SC_OLD-4c9cc74ac263d1d99177e8024e51c86d826b9d7a.tar.gz opensim-SC_OLD-4c9cc74ac263d1d99177e8024e51c86d826b9d7a.tar.bz2 opensim-SC_OLD-4c9cc74ac263d1d99177e8024e51c86d826b9d7a.tar.xz |
Re-added Grid mode. (which had got removed/disabled in revision 1515)
Diffstat (limited to 'OpenSim/Region/Application/Application.cs')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index b07a4d6..954d3c3 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -53,16 +53,16 @@ namespace OpenSim | |||
53 | 53 | ||
54 | Console.WriteLine("Starting...\n"); | 54 | Console.WriteLine("Starting...\n"); |
55 | 55 | ||
56 | ArgvConfigSource source = new ArgvConfigSource(args); | 56 | ArgvConfigSource configSource = new ArgvConfigSource(args); |
57 | 57 | ||
58 | source.AddSwitch("Startup", "inifile"); | 58 | configSource.AddSwitch("Startup", "inifile"); |
59 | source.AddSwitch("Startup", "configfile"); | 59 | configSource.AddSwitch("Startup", "configfile"); |
60 | source.AddSwitch("Startup", "gridmode"); | 60 | configSource.AddSwitch("Startup", "gridmode"); |
61 | source.AddSwitch("Startup", "physics"); | 61 | configSource.AddSwitch("Startup", "physics"); |
62 | source.AddSwitch("Startup", "config"); | 62 | configSource.AddSwitch("Startup", "config"); |
63 | source.AddSwitch("Startup", "noverbose"); | 63 | configSource.AddSwitch("Startup", "noverbose"); |
64 | 64 | ||
65 | OpenSimMain sim = new OpenSimMain(source); | 65 | OpenSimMain sim = new OpenSimMain(configSource); |
66 | 66 | ||
67 | sim.StartUp(); | 67 | sim.StartUp(); |
68 | 68 | ||