Pass server param to _is_ignored

This commit is contained in:
jesopo 2019-05-06 17:12:05 +01:00
parent 0114d35d4c
commit 8312efcc1c

View file

@ -101,7 +101,7 @@ class Module(ModuleManager.BaseModule):
return
if self.has_command(command):
if self._is_ignored(event["user"], command):
if self._is_ignored(event["server"], event["user"], command):
return
hook = None