diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tools/Configger/ConfigurationLoader.cs | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/OpenSim/Tools/Configger/ConfigurationLoader.cs b/OpenSim/Tools/Configger/ConfigurationLoader.cs index 1619a22..e74debb 100644 --- a/OpenSim/Tools/Configger/ConfigurationLoader.cs +++ b/OpenSim/Tools/Configger/ConfigurationLoader.cs | |||
@@ -241,36 +241,6 @@ namespace OpenSim.Tools.Configger | |||
241 | config.Set("EventQueue", true); | 241 | config.Set("EventQueue", true); |
242 | } | 242 | } |
243 | 243 | ||
244 | { | ||
245 | IConfig config = defaultConfig.Configs["StandAlone"]; | ||
246 | |||
247 | if (null == config) | ||
248 | config = defaultConfig.AddConfig("StandAlone"); | ||
249 | |||
250 | config.Set("accounts_authenticate", true); | ||
251 | config.Set("welcome_message", "Welcome to OpenSimulator"); | ||
252 | config.Set("inventory_plugin", "OpenSim.Data.SQLite.dll"); | ||
253 | config.Set("inventory_source", ""); | ||
254 | config.Set("userDatabase_plugin", "OpenSim.Data.SQLite.dll"); | ||
255 | config.Set("user_source", ""); | ||
256 | config.Set("LibrariesXMLFile", string.Format(".{0}inventory{0}Libraries.xml", Path.DirectorySeparatorChar)); | ||
257 | } | ||
258 | |||
259 | { | ||
260 | IConfig config = defaultConfig.Configs["Network"]; | ||
261 | |||
262 | if (null == config) | ||
263 | config = defaultConfig.AddConfig("Network"); | ||
264 | |||
265 | config.Set("default_location_x", 1000); | ||
266 | config.Set("default_location_y", 1000); | ||
267 | config.Set("grid_send_key", "null"); | ||
268 | config.Set("grid_recv_key", "null"); | ||
269 | config.Set("user_send_key", "null"); | ||
270 | config.Set("user_recv_key", "null"); | ||
271 | config.Set("secure_inventory_server", "true"); | ||
272 | } | ||
273 | |||
274 | return defaultConfig; | 244 | return defaultConfig; |
275 | } | 245 | } |
276 | 246 | ||