find "word" type, not cuser (because i can be 'user')

This commit is contained in:
jesopo 2020-01-26 16:06:02 +00:00
parent 2f5e2a8345
commit 174f0070ff

View file

@ -71,12 +71,12 @@ class Module(ModuleManager.BaseModule):
return self._format_hostmask(user, format)
def _ban(self, server, channel, target, allow_hostmask, time, add):
if target[0] == "cuser":
hostmask = self._get_hostmask(channel, target[1])
else:
if target[0] == "word":
if not allow_hostmask:
raise utils.EventError("No such user")
hostmask = target[1]
else:
hostmask = self._get_hostmask(channel, target[1])
if not add:
channel.send_unban(hostmask)