diff options
author | onefang | 2019-05-19 21:24:15 +1000 |
---|---|---|
committer | onefang | 2019-05-19 21:24:15 +1000 |
commit | 5e4d6cab00cb29cd088ab7b62ab13aff103b64cb (patch) | |
tree | a9fbc62df9eb2d1d9ba2698d8552eae71eca20d8 /OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs | |
parent | Add a build script. (diff) | |
download | opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.zip opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.gz opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.bz2 opensim-SC-5e4d6cab00cb29cd088ab7b62ab13aff103b64cb.tar.xz |
Dump OpenSim 0.9.0.1 into it's own branch.
Diffstat (limited to 'OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs')
-rw-r--r-- | OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs b/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs index 8f38a29..2e25c60 100644 --- a/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs +++ b/OpenSim/ApplicationPlugins/RegionModulesController/RegionModulesControllerPlugin.cs | |||
@@ -75,7 +75,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController | |||
75 | } | 75 | } |
76 | 76 | ||
77 | #region IApplicationPlugin implementation | 77 | #region IApplicationPlugin implementation |
78 | 78 | ||
79 | public void Initialise (OpenSimBase openSim) | 79 | public void Initialise (OpenSimBase openSim) |
80 | { | 80 | { |
81 | m_openSim = openSim; | 81 | m_openSim = openSim; |
@@ -111,7 +111,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController | |||
111 | { | 111 | { |
112 | m_log.InfoFormat( | 112 | m_log.InfoFormat( |
113 | "[REGIONMODULES]: From plugin {0}, (version {1}), loaded {2} modules, {3} shared, {4} non-shared {5} unknown", | 113 | "[REGIONMODULES]: From plugin {0}, (version {1}), loaded {2} modules, {3} shared, {4} non-shared {5} unknown", |
114 | loadedModuleData.Key.Id, | 114 | loadedModuleData.Key.Id, |
115 | loadedModuleData.Key.Version, | 115 | loadedModuleData.Key.Version, |
116 | loadedModuleData.Value[0] + loadedModuleData.Value[1] + loadedModuleData.Value[2], | 116 | loadedModuleData.Value[0] + loadedModuleData.Value[1] + loadedModuleData.Value[2], |
117 | loadedModuleData.Value[0], loadedModuleData.Value[1], loadedModuleData.Value[2]); | 117 | loadedModuleData.Value[0], loadedModuleData.Value[1], loadedModuleData.Value[2]); |
@@ -261,7 +261,7 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController | |||
261 | } | 261 | } |
262 | 262 | ||
263 | #region Region Module interfacesController implementation | 263 | #region Region Module interfacesController implementation |
264 | 264 | ||
265 | /// <summary> | 265 | /// <summary> |
266 | /// Check that the given module is no disabled in the [Modules] section of the config files. | 266 | /// Check that the given module is no disabled in the [Modules] section of the config files. |
267 | /// </summary> | 267 | /// </summary> |
@@ -293,10 +293,10 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController | |||
293 | if (className != String.Empty && | 293 | if (className != String.Empty && |
294 | node.Type.ToString() != className) | 294 | node.Type.ToString() != className) |
295 | return false; | 295 | return false; |
296 | } | 296 | } |
297 | 297 | ||
298 | return true; | 298 | return true; |
299 | } | 299 | } |
300 | 300 | ||
301 | // The root of all evil. | 301 | // The root of all evil. |
302 | // This is where we handle adding the modules to scenes when they | 302 | // This is where we handle adding the modules to scenes when they |