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 'OpenSim/Framework/ConfigSettings.cs')
-rw-r--r-- | OpenSim/Framework/ConfigSettings.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs index 275ab69..3ff02f9 100644 --- a/OpenSim/Framework/ConfigSettings.cs +++ b/OpenSim/Framework/ConfigSettings.cs | |||
@@ -148,5 +148,13 @@ namespace OpenSim.Framework | |||
148 | get { return m_estateConnectionString; } | 148 | get { return m_estateConnectionString; } |
149 | set { m_estateConnectionString = value; } | 149 | set { m_estateConnectionString = value; } |
150 | } | 150 | } |
151 | |||
152 | protected bool m_dumpAssetsToFile; | ||
153 | |||
154 | public bool DumpAssetsToFile | ||
155 | { | ||
156 | get { return m_dumpAssetsToFile; } | ||
157 | set { m_dumpAssetsToFile = value; } | ||
158 | } | ||
151 | } | 159 | } |
152 | } | 160 | } |