diff options
author | Sean Dague | 2007-10-22 03:22:27 +0000 |
---|---|---|
committer | Sean Dague | 2007-10-22 03:22:27 +0000 |
commit | e0f43cad4b86ff5810fef665dec55ac6868dee38 (patch) | |
tree | d32e2bcc18cb79d03eba443b425babc12863d045 /OpenSim/Region/Environment/Modules | |
parent | pull the IRC portions into their own class. There is still (diff) | |
download | opensim-SC_OLD-e0f43cad4b86ff5810fef665dec55ac6868dee38.zip opensim-SC_OLD-e0f43cad4b86ff5810fef665dec55ac6868dee38.tar.gz opensim-SC_OLD-e0f43cad4b86ff5810fef665dec55ac6868dee38.tar.bz2 opensim-SC_OLD-e0f43cad4b86ff5810fef665dec55ac6868dee38.tar.xz |
update so that distances aren't required in the config file
Diffstat (limited to 'OpenSim/Region/Environment/Modules')
-rw-r--r-- | OpenSim/Region/Environment/Modules/ChatModule.cs | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/OpenSim/Region/Environment/Modules/ChatModule.cs b/OpenSim/Region/Environment/Modules/ChatModule.cs index 4ead398..abd770a 100644 --- a/OpenSim/Region/Environment/Modules/ChatModule.cs +++ b/OpenSim/Region/Environment/Modules/ChatModule.cs | |||
@@ -58,10 +58,13 @@ namespace OpenSim.Region.Environment.Modules | |||
58 | 58 | ||
59 | public void Initialise(Scene scene, Nini.Config.IConfigSource config) | 59 | public void Initialise(Scene scene, Nini.Config.IConfigSource config) |
60 | { | 60 | { |
61 | 61 | // wrap this in a try block so that defaults will work if | |
62 | m_whisperdistance = config.Configs["Chat"].GetInt("whisper_distance"); | 62 | // the config file doesn't specify otherwise. |
63 | m_saydistance = config.Configs["Chat"].GetInt("say_distance"); | 63 | try { |
64 | m_shoutdistance = config.Configs["Chat"].GetInt("shout_distance"); | 64 | m_whisperdistance = config.Configs["Chat"].GetInt("whisper_distance", m_whisperdistance); |
65 | m_saydistance = config.Configs["Chat"].GetInt("say_distance", m_saydistance); | ||
66 | m_shoutdistance = config.Configs["Chat"].GetInt("shout_distance", m_shoutdistance); | ||
67 | } catch (Exception e) {} | ||
65 | 68 | ||
66 | if (!m_scenes.Contains(scene)) | 69 | if (!m_scenes.Contains(scene)) |
67 | { | 70 | { |