From: John Runyon Date: Sat, 3 Feb 2024 11:04:53 +0000 (-0700) Subject: modlib - correctly explain IGNORED level X-Git-Url: https://jfr.im/git/erebus.git/commitdiff_plain/96efbdc7ec7616788706a472a95f634f8c963646 modlib - correctly explain IGNORED level --- diff --git a/modlib.py b/modlib.py index cc1c47c..cd87f5e 100644 --- a/modlib.py +++ b/modlib.py @@ -33,7 +33,7 @@ class modlib(object): KNOWN = 1 AUTHED = 0 # Users which have are known to be authed ANYONE = -1 # non-authed users have glevel set to -1 - IGNORED = -2 # The default reqglevel is ANYONE, so any commands will be ignored from IGNORED users unless the command reglevel=-2 + IGNORED = -2 # If the user is IGNORED, no hooks or chanhooks will fire for their messages. numhooks can still be fired. glevs = { 'OWNER': OWNER, 'MANAGER': MANAGER,