diff options
moved the initial loading/setting of the config settings to its own class, ConfigurationLoader. To make it easier to customise the loading of those settings and possible in the future move it to a plugin.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.cs b/OpenSim/Region/Application/OpenSim.cs index e710ec2..763aaa5 100644 --- a/OpenSim/Region/Application/OpenSim.cs +++ b/OpenSim/Region/Application/OpenSim.cs | |||
@@ -67,7 +67,7 @@ namespace OpenSim | |||
67 | { | 67 | { |
68 | } | 68 | } |
69 | 69 | ||
70 | protected override void ReadConfigSettings() | 70 | protected override void ReadExtraConfigSettings() |
71 | { | 71 | { |
72 | IConfig startupConfig = m_config.Source.Configs["Startup"]; | 72 | IConfig startupConfig = m_config.Source.Configs["Startup"]; |
73 | 73 | ||
@@ -78,7 +78,6 @@ namespace OpenSim | |||
78 | 78 | ||
79 | m_timedScript = startupConfig.GetString("timer_Script", "disabled"); | 79 | m_timedScript = startupConfig.GetString("timer_Script", "disabled"); |
80 | } | 80 | } |
81 | base.ReadConfigSettings(); | ||
82 | } | 81 | } |
83 | 82 | ||
84 | /// <summary> | 83 | /// <summary> |