Fixed bug in addhostmask.

This commit is contained in:
Jeremy Fincher 2003-09-14 02:45:09 +00:00
parent e729b430b6
commit 0293a2ba0d
1 changed files with 4 additions and 3 deletions

View File

@ -120,9 +120,10 @@ class UserCommands(callbacks.Privmsg):
irc.error(msg, conf.replyNoUser)
return
try:
_ = ircdb.users.getUserId(hostmask)
irc.error(msg, 'That hostmask is already registered.')
return
otherId = ircdb.users.getUserId(hostmask)
if otherId != id:
irc.error(msg, 'That hostmask is already registered.')
return
except KeyError:
pass
if user.checkHostmask(msg.prefix) or user.checkPassword(password):