Browse Source

Improve per-channel quieting.

tags/v0.3
Ben Kurtovic 8 years ago
parent
commit
5479375ce2
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      earwigbot/managers.py

+ 2
- 1
earwigbot/managers.py View File

@@ -226,7 +226,8 @@ class CommandManager(_ResourceManager):
The special ``rc`` hook actually passes a :class:`~.RC` object. The special ``rc`` hook actually passes a :class:`~.RC` object.
""" """
try: try:
if data.chan in self.bot.config.irc["frontend"]["quiet"]:
quiet = self.bot.config.irc["frontend"]["quiet"][data.chan]
if quiet is True or hook in quiet:
return return
except KeyError: except KeyError:
pass pass


Loading…
Cancel
Save