diff options
author | mingchen | 2008-01-04 14:14:15 +0000 |
---|---|---|
committer | mingchen | 2008-01-04 14:14:15 +0000 |
commit | 81b4c7be3e84b29e5fcc387f578afdc07b806048 (patch) | |
tree | 5e835924288eb49fb92d293133ee68ae728d7f60 /OpenSim/Framework/GridConfig.cs | |
parent | * Fixed situation where sometimes your avatar tries to land and gets 'put' 80... (diff) | |
download | opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.zip opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.tar.gz opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.tar.bz2 opensim-SC_OLD-81b4c7be3e84b29e5fcc387f578afdc07b806048.tar.xz |
*Added ability to skip any use of the console when configuring and assume default value. This is useful when the server is running by itself and a new region request is added without sufficient information
Diffstat (limited to 'OpenSim/Framework/GridConfig.cs')
-rw-r--r-- | OpenSim/Framework/GridConfig.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/GridConfig.cs b/OpenSim/Framework/GridConfig.cs index 8821010..c07adea 100644 --- a/OpenSim/Framework/GridConfig.cs +++ b/OpenSim/Framework/GridConfig.cs | |||
@@ -55,7 +55,7 @@ namespace OpenSim.Framework | |||
55 | public GridConfig(string description, string filename) | 55 | public GridConfig(string description, string filename) |
56 | { | 56 | { |
57 | configMember = | 57 | configMember = |
58 | new ConfigurationMember(filename, description, loadConfigurationOptions, handleIncomingConfiguration); | 58 | new ConfigurationMember(filename, description, loadConfigurationOptions, handleIncomingConfiguration, true); |
59 | configMember.performConfigurationRetrieve(); | 59 | configMember.performConfigurationRetrieve(); |
60 | } | 60 | } |
61 | 61 | ||