mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-12-25 04:02:46 +01:00
Fixed bug in addhostmask.
This commit is contained in:
parent
e729b430b6
commit
0293a2ba0d
@ -120,9 +120,10 @@ class UserCommands(callbacks.Privmsg):
|
|||||||
irc.error(msg, conf.replyNoUser)
|
irc.error(msg, conf.replyNoUser)
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
_ = ircdb.users.getUserId(hostmask)
|
otherId = ircdb.users.getUserId(hostmask)
|
||||||
irc.error(msg, 'That hostmask is already registered.')
|
if otherId != id:
|
||||||
return
|
irc.error(msg, 'That hostmask is already registered.')
|
||||||
|
return
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
if user.checkHostmask(msg.prefix) or user.checkPassword(password):
|
if user.checkHostmask(msg.prefix) or user.checkPassword(password):
|
||||||
|
Loading…
Reference in New Issue
Block a user