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/ClientStack | |
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/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/RegionApplicationBase.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/RegionApplicationBase.cs b/OpenSim/Region/ClientStack/RegionApplicationBase.cs index 19d14ad..d96336a 100644 --- a/OpenSim/Region/ClientStack/RegionApplicationBase.cs +++ b/OpenSim/Region/ClientStack/RegionApplicationBase.cs | |||
@@ -73,9 +73,9 @@ namespace OpenSim.Region.ClientStack | |||
73 | get { return m_sceneManager; } | 73 | get { return m_sceneManager; } |
74 | } | 74 | } |
75 | 75 | ||
76 | public override void StartUp() | 76 | public override void Startup() |
77 | { | 77 | { |
78 | base.StartUp(); | 78 | base.Startup(); |
79 | 79 | ||
80 | LLClientView.TerrainManager = new TerrainManager(new SecondLife()); | 80 | LLClientView.TerrainManager = new TerrainManager(new SecondLife()); |
81 | 81 | ||