Fix bug #1027279, $randomnick should not return msg.nick

This commit is contained in:
James Vega 2004-09-13 18:19:03 +00:00
parent cdd07ecb83
commit 5570ba3dbe
1 changed files with 8 additions and 1 deletions

View File

@ -420,7 +420,14 @@ def standardSubstitute(irc, msg, text, env=None):
return time.ctime(t)
def randNick():
if channel != 'somewhere':
return random.choice(list(irc.state.channels[channel].users))
L = list(irc.state.channels[channel].users)
if len(L) > 1:
n = msg.nick
while n != msg.nick:
n = random.choice(L)
return n
else:
return msg.nick
else:
return 'someone'
ctime = time.ctime()