fixes a CTB when IRCBridgeModule is not configured.

0.6.0-stable
Dr Scofield 2008-05-27 13:16:44 +00:00
parent 34f1741866
commit 1d3d739da4
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Chat
public void PostInitialise()
{
if (!m_irc.Enabled) return;
if (null == m_irc || !m_irc.Enabled) return;
try
{