fix new permissions system
This commit is contained in:
parent
0bdbade75f
commit
98395457e5
1 changed files with 1 additions and 1 deletions
|
@ -166,7 +166,7 @@ class IRC(object):
|
||||||
else:
|
else:
|
||||||
prefix, command, params = irc_noprefix_rem(msg).groups()
|
prefix, command, params = irc_noprefix_rem(msg).groups()
|
||||||
nick, user, host = irc_netmask_rem(prefix).groups()
|
nick, user, host = irc_netmask_rem(prefix).groups()
|
||||||
mask = user + "@" + host
|
mask = nick + "!" + user + "@" + host
|
||||||
paramlist = irc_param_ref(params)
|
paramlist = irc_param_ref(params)
|
||||||
lastparam = ""
|
lastparam = ""
|
||||||
if paramlist:
|
if paramlist:
|
||||||
|
|
Reference in a new issue