diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 0ed85b8..11cacac 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -246,10 +246,7 @@ namespace OpenSim | |||
246 | } | 246 | } |
247 | 247 | ||
248 | if (m_console != null) | 248 | if (m_console != null) |
249 | { | ||
250 | StatsManager.RegisterConsoleCommands(m_console); | ||
251 | AddPluginCommands(m_console); | 249 | AddPluginCommands(m_console); |
252 | } | ||
253 | } | 250 | } |
254 | 251 | ||
255 | protected virtual void AddPluginCommands(ICommandConsole console) | 252 | protected virtual void AddPluginCommands(ICommandConsole console) |
@@ -964,7 +961,7 @@ namespace OpenSim | |||
964 | /// <summary> | 961 | /// <summary> |
965 | /// Performs any last-minute sanity checking and shuts down the region server | 962 | /// Performs any last-minute sanity checking and shuts down the region server |
966 | /// </summary> | 963 | /// </summary> |
967 | public override void ShutdownSpecific() | 964 | protected override void ShutdownSpecific() |
968 | { | 965 | { |
969 | if (proxyUrl.Length > 0) | 966 | if (proxyUrl.Length > 0) |
970 | { | 967 | { |
@@ -984,6 +981,8 @@ namespace OpenSim | |||
984 | { | 981 | { |
985 | m_log.Error("[SHUTDOWN]: Ignoring failure during shutdown - ", e); | 982 | m_log.Error("[SHUTDOWN]: Ignoring failure during shutdown - ", e); |
986 | } | 983 | } |
984 | |||
985 | base.ShutdownSpecific(); | ||
987 | } | 986 | } |
988 | 987 | ||
989 | /// <summary> | 988 | /// <summary> |