diff options
author | Melanie | 2010-12-07 15:27:50 +0000 |
---|---|---|
committer | Melanie | 2010-12-07 15:27:50 +0000 |
commit | dd416f4b6317d8fe9ff64aa265d892a512fc4449 (patch) | |
tree | f328e58d9f639f036e1a8aa815c0aea12b50ca84 /OpenSim/Region/Application/OpenSimBase.cs | |
parent | Remove old Freeswitch configurations (diff) | |
parent | Update calling card interface (diff) | |
download | opensim-SC_OLD-dd416f4b6317d8fe9ff64aa265d892a512fc4449.zip opensim-SC_OLD-dd416f4b6317d8fe9ff64aa265d892a512fc4449.tar.gz opensim-SC_OLD-dd416f4b6317d8fe9ff64aa265d892a512fc4449.tar.bz2 opensim-SC_OLD-dd416f4b6317d8fe9ff64aa265d892a512fc4449.tar.xz |
Merge branch 'careminster-presence-refactor' of ssh://melanie@3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/Application/OpenSimBase.cs')
-rw-r--r-- | OpenSim/Region/Application/OpenSimBase.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Application/OpenSimBase.cs b/OpenSim/Region/Application/OpenSimBase.cs index 05fa331..b74a392 100644 --- a/OpenSim/Region/Application/OpenSimBase.cs +++ b/OpenSim/Region/Application/OpenSimBase.cs | |||
@@ -222,6 +222,12 @@ namespace OpenSim | |||
222 | m_moduleLoader = new ModuleLoader(m_config.Source); | 222 | m_moduleLoader = new ModuleLoader(m_config.Source); |
223 | 223 | ||
224 | LoadPlugins(); | 224 | LoadPlugins(); |
225 | |||
226 | if (m_plugins.Count == 0) // We failed to load any modules. Mono Addins glitch! | ||
227 | { | ||
228 | Environment.Exit(1); | ||
229 | } | ||
230 | |||
225 | foreach (IApplicationPlugin plugin in m_plugins) | 231 | foreach (IApplicationPlugin plugin in m_plugins) |
226 | { | 232 | { |
227 | plugin.PostInitialise(); | 233 | plugin.PostInitialise(); |