def cmd(send, msg, args): if not msg: return if msg.lower() == NICK.lower(): send('%s is not feeling suicidal right now.' % msg) else: send('Die, %s!' % msg)
def cmd(e, c, msg): if not msg: return if msg.lower() == NICK.lower(): c.privmsg(CHANNEL, '%s is not feeling suicidal right now.' % msg) else: c.privmsg(CHANNEL, 'Die, %s!' % msg)