Discouraged using #ls-trusted on a channel

This commit is contained in:
Juhani Haverinen 2013-10-11 22:52:46 +03:00
parent fb0e07cd72
commit 36eb3907ec
1 changed files with 5 additions and 2 deletions

View File

@ -159,7 +159,10 @@ def parse((line,irc)):
irc.send('PRIVMSG %s :Usage #trust nick'%chan)
elif line[3]==':#ls-trusted':
trustedlock.acquire()
irc.send('PRIVMSG %s :%s'%(chan,', '.join(trusted)))
if chan!=nick:
irc.send('KICK %s %s :Just don\'t'%(chan,nick))
else:
irc.send('PRIVMSG %s :%s'%(chan,', '.join(trusted)))
trustedlock.release()
elif line[3]==':#help':
irc.send('PRIVMSG %s :%s'%(chan,help(' '.join(line[4:]))))
@ -255,7 +258,7 @@ def help(cmd):
elif cmd=='#untrust':
return '#untrust nick remove nick from trusted list'
elif cmd=='#ls-trusted':
return '#lt-trusted list nicks that are trusted'
return '#lt-trusted list nicks that are trusted. use only in a query'
elif cmd=='#help':
return '#help [command] give short info of command or list commands'
else: