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.0.7.4-post-fixes
parent
068e97cf0e
commit
c27a158961
|
@ -231,12 +231,12 @@ namespace OpenSim.Region.OptionalModules.Avatar.Chat
|
||||||
if (m_server == null || m_baseNick == null || m_ircChannel == null || m_user == null)
|
if (m_server == null || m_baseNick == null || m_ircChannel == null || m_user == null)
|
||||||
throw new Exception("Invalid connector configuration");
|
throw new Exception("Invalid connector configuration");
|
||||||
|
|
||||||
// Generate an initial nickname if randomizing is enabled
|
// Generate an initial nickname
|
||||||
|
|
||||||
if (m_randomizeNick)
|
if (m_randomizeNick)
|
||||||
{
|
|
||||||
m_nick = m_baseNick + Util.RandomClass.Next(1, 99);
|
m_nick = m_baseNick + Util.RandomClass.Next(1, 99);
|
||||||
}
|
else
|
||||||
|
m_nick = m_baseNick;
|
||||||
|
|
||||||
m_log.InfoFormat("[IRC-Connector-{0}]: Initialization complete", idn);
|
m_log.InfoFormat("[IRC-Connector-{0}]: Initialization complete", idn);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue