diff options
| author | 2020-01-23 10:26:11 +0000 | |
|---|---|---|
| committer | 2020-01-23 10:26:26 +0000 | |
| commit | 66a8a2b8561c00221294d9738e256430ec74caa8 (patch) | |
| tree | 51f3ac45fb8b35b6c43f64149fb41895ec105f69 | |
| parent | fix duplicate "insp" QUIET_METHODS entry (diff) | |
| signature | ||
get channelset quiet-method list from QUIET_METHODS
| -rw-r--r-- | modules/channel_op.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/channel_op.py b/modules/channel_op.py index 76ffb176..d3c0b4d8 100644 --- a/modules/channel_op.py +++ b/modules/channel_op.py @@ -27,7 +27,7 @@ KICK_REASON_SETTING = utils.Setting("default-kick-reason", "($n = nick, $u = username, $h = hostname, $a = account)", example="~a:$a")) @utils.export("serverset", utils.OptionsSetting( - ["qmode", "insp", "unreal", "none"], "quiet-method", + list(QUIET_METHODS.keys())+["none"], "quiet-method", "Set this server's method of muting users")) @utils.export("botset", KICK_REASON_SETTING) @utils.export("serverset", KICK_REASON_SETTING) |
