diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index 1e2b8a5..748edbb 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -84,7 +84,7 @@ namespace OpenSim | |||
84 | /// <summary> | 84 | /// <summary> |
85 | /// Performs initialisation of the scene, such as loading configuration from disk. | 85 | /// Performs initialisation of the scene, such as loading configuration from disk. |
86 | /// </summary> | 86 | /// </summary> |
87 | public override void Startup() | 87 | protected override void StartupSpecific() |
88 | { | 88 | { |
89 | m_log.Info("===================================================================="); | 89 | m_log.Info("===================================================================="); |
90 | m_log.Info("========================= STARTING OPENSIM ========================="); | 90 | m_log.Info("========================= STARTING OPENSIM ========================="); |
@@ -94,7 +94,7 @@ namespace OpenSim | |||
94 | m_console = new ConsoleBase("Region", this); | 94 | m_console = new ConsoleBase("Region", this); |
95 | MainConsole.Instance = m_console; | 95 | MainConsole.Instance = m_console; |
96 | 96 | ||
97 | base.Startup(); | 97 | base.StartupSpecific(); |
98 | 98 | ||
99 | //Run Startup Commands | 99 | //Run Startup Commands |
100 | if (String.IsNullOrEmpty( m_startupCommandsFile )) | 100 | if (String.IsNullOrEmpty( m_startupCommandsFile )) |