aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-02-02 17:27:23 +0000
committerJustin Clarke Casey2009-02-02 17:27:23 +0000
commit176920f8d3ddf8dd419e58e059d864f04e74a538 (patch)
tree4f5ffac819017046f11a70250c1d68f44d41c005 /OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs
parent* Stop the instant message module from trying to register for the message tra... (diff)
downloadopensim-SC_OLD-176920f8d3ddf8dd419e58e059d864f04e74a538.zip
opensim-SC_OLD-176920f8d3ddf8dd419e58e059d864f04e74a538.tar.gz
opensim-SC_OLD-176920f8d3ddf8dd419e58e059d864f04e74a538.tar.bz2
opensim-SC_OLD-176920f8d3ddf8dd419e58e059d864f04e74a538.tar.xz
* Make it more obvious that there is an enabled switch for chat in OpenSim.ini.example.
* Add default information for other chat settings
Diffstat (limited to '')
-rw-r--r--OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs b/OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs
index df42f07..1109166 100644
--- a/OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs
+++ b/OpenSim/Region/Environment/Modules/Avatar/Chat/ChatModule.cs
@@ -170,7 +170,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
170 case ChatSourceType.Agent: 170 case ChatSourceType.Agent:
171 if (!(scene is Scene)) 171 if (!(scene is Scene))
172 { 172 {
173 m_log.WarnFormat("[CHAT] scene {0} is not a Scene object, cannot obtain scene presence for {1}", 173 m_log.WarnFormat("[CHAT]: scene {0} is not a Scene object, cannot obtain scene presence for {1}",
174 scene.RegionInfo.RegionName, c.Sender.AgentId); 174 scene.RegionInfo.RegionName, c.Sender.AgentId);
175 return; 175 return;
176 } 176 }
@@ -191,7 +191,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
191 if (message.Length >= 1000) // libomv limit 191 if (message.Length >= 1000) // libomv limit
192 message = message.Substring(0, 1000); 192 message = message.Substring(0, 1000);
193 193
194 // m_log.DebugFormat("[CHAT] DCTA: fromID {0} fromName {1}, cType {2}, sType {3}", fromID, fromName, c.Type, sourceType); 194 // m_log.DebugFormat("[CHAT]: DCTA: fromID {0} fromName {1}, cType {2}, sType {3}", fromID, fromName, c.Type, sourceType);
195 195
196 foreach (Scene s in m_scenes) 196 foreach (Scene s in m_scenes)
197 { 197 {