Don't fail to create an IRC nick if nick randomization is disabled in the IRC module.

Patch from http://opensimulator.org/mantis/view.php?id=6293
Thanks Starflower.
connector_plugin
Justin Clark-Casey (justincc) 2012-09-20 02:01:01 +01:00
parent d667f9d260
commit b481a78234
1 changed files with 3 additions and 3 deletions

View File

@ -231,12 +231,12 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat
if (m_server == null || m_baseNick == null || m_ircChannel == null || m_user == null)
throw new Exception("Invalid connector configuration");
// Generate an initial nickname if randomizing is enabled
// Generate an initial nickname
if (m_randomizeNick)
{
m_nick = m_baseNick + Util.RandomClass.Next(1, 99);
}
else
m_nick = m_baseNick;
m_log.InfoFormat("[IRC-Connector-{0}]: Initialization complete", idn);