diff options
author | Melanie | 2009-10-12 15:25:42 +0100 |
---|---|---|
committer | Melanie | 2009-10-12 15:25:42 +0100 |
commit | 170d2c4660028570902ffe67e162d88f37957580 (patch) | |
tree | 2fdcd9f8534f397d54d592b06893b4fb6784b350 /OpenSim/Client/Linden | |
parent | Merge branch 'master' into htb-throttle (diff) | |
parent | Optimize ODE mesh by removing sleep. On a region with 100,000 prims and ODE e... (diff) | |
download | opensim-SC-170d2c4660028570902ffe67e162d88f37957580.zip opensim-SC-170d2c4660028570902ffe67e162d88f37957580.tar.gz opensim-SC-170d2c4660028570902ffe67e162d88f37957580.tar.bz2 opensim-SC-170d2c4660028570902ffe67e162d88f37957580.tar.xz |
Merge branch 'master' into htb-throttle
Diffstat (limited to 'OpenSim/Client/Linden')
-rw-r--r-- | OpenSim/Client/Linden/LLProxyLoginModule.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Client/Linden/LLProxyLoginModule.cs b/OpenSim/Client/Linden/LLProxyLoginModule.cs index f9cb3a9..2da774f 100644 --- a/OpenSim/Client/Linden/LLProxyLoginModule.cs +++ b/OpenSim/Client/Linden/LLProxyLoginModule.cs | |||
@@ -76,10 +76,10 @@ namespace OpenSim.Client.Linden | |||
76 | 76 | ||
77 | public void Initialise(IConfigSource source) | 77 | public void Initialise(IConfigSource source) |
78 | { | 78 | { |
79 | IConfig startupConfig = source.Configs["Startup"]; | 79 | IConfig startupConfig = source.Configs["Modules"]; |
80 | if (startupConfig != null) | 80 | if (startupConfig != null) |
81 | { | 81 | { |
82 | m_enabled = startupConfig.GetBoolean("gridmode", false); | 82 | m_enabled = startupConfig.GetBoolean("LLProxyLoginModule", false); |
83 | } | 83 | } |
84 | } | 84 | } |
85 | 85 | ||