diff options
| author | 2019-05-06 17:08:56 +0100 | |
|---|---|---|
| committer | 2019-05-06 17:08:56 +0100 | |
| commit | 0114d35d4c7a3a6640b5ccd1190347998b9dc7c5 (patch) | |
| tree | 328cf0f8e8dc291239197ae690f74845b3ba88e0 /modules/karma.py | |
| parent | Support only saving birthday day and month (diff) | |
Add a mechanism to ignore specific commands for a whole network
Diffstat (limited to 'modules/karma.py')
| -rw-r--r-- | modules/karma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/karma.py b/modules/karma.py index 1028ed2d..145b342d 100644 --- a/modules/karma.py +++ b/modules/karma.py @@ -31,7 +31,7 @@ class Module(ModuleManager.BaseModule): if match and not event["action"]: is_ignored_f = short_url = self.exports.get_one("is-ignored", lambda _1, _2: False) - if is_ignored_f(event["user"], "karma"): + if is_ignored_f(event["server"], event["user"], "karma"): return verbose = event["channel"].get_setting("karma-verbose", False) |
