From 26df48c26d663b130b9bf2738ce5348fe7420fb5 Mon Sep 17 00:00:00 2001 From: James Lu Date: Sun, 19 Jun 2016 21:13:14 -0700 Subject: [PATCH] ts6: add missing definition for cmode +i --- protocols/ts6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/ts6.py b/protocols/ts6.py index bed80c7..8dc3619 100644 --- a/protocols/ts6.py +++ b/protocols/ts6.py @@ -259,7 +259,7 @@ class TS6Protocol(TS6BaseProtocol): chary_cmodes = { # TS6 generic modes (note that +p is noknock instead of private): 'op': 'o', 'voice': 'v', 'ban': 'b', 'key': 'k', 'limit': 'l', 'moderated': 'm', 'noextmsg': 'n', 'noknock': 'p', - 'secret': 's', 'topiclock': 't', + 'secret': 's', 'topiclock': 't', 'inviteonly': 'i', # charybdis-specific modes: 'quiet': 'q', 'redirect': 'f', 'freetarget': 'F', 'joinflood': 'j', 'largebanlist': 'L', 'permanent': 'P',