diff options
author | Justin Clarke Casey | 2008-06-01 01:34:46 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-01 01:34:46 +0000 |
commit | 15d41c2fc279f369f1f95e886ebaada94f558dcc (patch) | |
tree | b0265e63d29aeed628f6d44aff1e990188073af1 /OpenSim/Region/Application/Application.cs | |
parent | * Put IScenePermissions out of its misery (diff) | |
download | opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.zip opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.tar.gz opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.tar.bz2 opensim-SC_OLD-15d41c2fc279f369f1f95e886ebaada94f558dcc.tar.xz |
* Fix build break by eliminating remaining IScenePermissions references - must remember to nant clean
* Hook all server startups into base opensim server startup method
Diffstat (limited to 'OpenSim/Region/Application/Application.cs')
-rw-r--r-- | OpenSim/Region/Application/Application.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs index 72fdf10..9be30e9 100644 --- a/OpenSim/Region/Application/Application.cs +++ b/OpenSim/Region/Application/Application.cs | |||
@@ -83,12 +83,12 @@ namespace OpenSim | |||
83 | if (background) | 83 | if (background) |
84 | { | 84 | { |
85 | OpenSimBase sim = new OpenSimBackground(configSource); | 85 | OpenSimBase sim = new OpenSimBackground(configSource); |
86 | sim.StartUp(); | 86 | sim.Startup(); |
87 | } | 87 | } |
88 | else | 88 | else |
89 | { | 89 | { |
90 | OpenSimBase sim = new OpenSim(configSource); | 90 | OpenSimBase sim = new OpenSim(configSource); |
91 | sim.StartUp(); | 91 | sim.Startup(); |
92 | 92 | ||
93 | while (true) | 93 | while (true) |
94 | { | 94 | { |