diff options
author | Teravus Ovares | 2008-12-20 17:34:38 +0000 |
---|---|---|
committer | Teravus Ovares | 2008-12-20 17:34:38 +0000 |
commit | 1e723f185aa1e24183947150e5c56c1332369bf7 (patch) | |
tree | 5f73e8e048b0cd581577a842e38c54699f9eae74 | |
parent | Fix Mantis#2878 for now by not resetting physical values on rez (only on swit... (diff) | |
download | opensim-SC_OLD-1e723f185aa1e24183947150e5c56c1332369bf7.zip opensim-SC_OLD-1e723f185aa1e24183947150e5c56c1332369bf7.tar.gz opensim-SC_OLD-1e723f185aa1e24183947150e5c56c1332369bf7.tar.bz2 opensim-SC_OLD-1e723f185aa1e24183947150e5c56c1332369bf7.tar.xz |
* Add two more missing defaults that use GetBoolean without a default in standalone. (not sure if this will fix your issue daTwitch.. it's probably not even a bug)
-rw-r--r-- | OpenSim/Region/Application/ConfigurationLoader.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/ConfigurationLoader.cs b/OpenSim/Region/Application/ConfigurationLoader.cs index 1fed6fc..bfaf5af 100644 --- a/OpenSim/Region/Application/ConfigurationLoader.cs +++ b/OpenSim/Region/Application/ConfigurationLoader.cs | |||
@@ -208,7 +208,7 @@ namespace OpenSim | |||
208 | IConfig standaloneConfig = m_config.Source.Configs["StandAlone"]; | 208 | IConfig standaloneConfig = m_config.Source.Configs["StandAlone"]; |
209 | if (standaloneConfig != null) | 209 | if (standaloneConfig != null) |
210 | { | 210 | { |
211 | m_configSettings.StandaloneAuthenticate = standaloneConfig.GetBoolean("accounts_authenticate"); | 211 | m_configSettings.StandaloneAuthenticate = standaloneConfig.GetBoolean("accounts_authenticate", true); |
212 | m_configSettings.StandaloneWelcomeMessage = standaloneConfig.GetString("welcome_message"); | 212 | m_configSettings.StandaloneWelcomeMessage = standaloneConfig.GetString("welcome_message"); |
213 | 213 | ||
214 | m_configSettings.StandaloneInventoryPlugin = standaloneConfig.GetString("inventory_plugin"); | 214 | m_configSettings.StandaloneInventoryPlugin = standaloneConfig.GetString("inventory_plugin"); |
@@ -218,7 +218,7 @@ namespace OpenSim | |||
218 | m_configSettings.StandaloneAssetPlugin = standaloneConfig.GetString("asset_plugin"); | 218 | m_configSettings.StandaloneAssetPlugin = standaloneConfig.GetString("asset_plugin"); |
219 | m_configSettings.StandaloneAssetSource = standaloneConfig.GetString("asset_source"); | 219 | m_configSettings.StandaloneAssetSource = standaloneConfig.GetString("asset_source"); |
220 | 220 | ||
221 | m_configSettings.DumpAssetsToFile = standaloneConfig.GetBoolean("dump_assets_to_file"); | 221 | m_configSettings.DumpAssetsToFile = standaloneConfig.GetBoolean("dump_assets_to_file", false); |
222 | } | 222 | } |
223 | 223 | ||
224 | m_networkServersInfo.loadFromConfiguration(m_config.Source); | 224 | m_networkServersInfo.loadFromConfiguration(m_config.Source); |