add a special flag to allow commands to bypass !silence
This commit is contained in:
parent
a9b106c6be
commit
695c7982a6
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ class Module(ModuleManager.BaseModule):
|
|||
|
||||
@utils.hook("preprocess.command", priority=EventManager.PRIORITY_HIGH)
|
||||
def preprocess_command(self, event):
|
||||
if event["is_channel"]:
|
||||
if event["is_channel"] and not event["hook"].get_kwarg(
|
||||
"unsilence", False):
|
||||
silence_until = event["target"].get_setting("silence-until", None)
|
||||
if silence_until:
|
||||
if self._is_silenced(event["target"]):
|
||||
|
|
Loading…
Reference in a new issue