Make sure we don't take revenge on ourselves.

This commit is contained in:
Jeremy Fincher 2004-04-26 15:35:56 +00:00
parent c63826dcff
commit 27cd893dbd
1 changed files with 8 additions and 2 deletions

View File

@ -162,8 +162,14 @@ class Enforcer(callbacks.Privmsg):
return False # Default.
def _revenge(self, irc, channel, hostmask):
irc.queueMsg(ircmsgs.ban(channel, ircutils.banmask(hostmask)))
irc.queueMsg(ircmsgs.kick(channel,ircutils.nickFromHostmask(hostmask)))
nick = ircutils.nickFromHostmask(hostmask)
if irc.nick != nick:
irc.queueMsg(ircmsgs.ban(channel, ircutils.banmask(hostmask)))
irc.queueMsg(ircmsgs.kick(channel, nick))
else:
# This can happen if takeRevengeOnOps is True.
self.log.info('Tried to take revenge on myself. '
'Are you sure you want takeRevengeOnOps to be True?')
def doKick(self, irc, msg):
channel = msg.args[0]