diff options
| author | 2019-02-09 18:48:18 +0000 | |
|---|---|---|
| committer | 2019-02-09 18:48:18 +0000 | |
| commit | 84a3bf613501ec88a0be7042e11501b93af2c549 (patch) | |
| tree | c92fb036f376b59f075c0213d93910e0b8db15bb /src/IRCServer.py | |
| parent | Move REGEX_CUTOFF to outs.py (commands) (diff) | |
| signature | ||
Also capture channel setting-related modes (e.g. +f for flood settings)
Diffstat (limited to 'src/IRCServer.py')
| -rw-r--r-- | src/IRCServer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/IRCServer.py b/src/IRCServer.py index 4c8ffec2..d3ced447 100644 --- a/src/IRCServer.py +++ b/src/IRCServer.py @@ -56,6 +56,7 @@ class Server(IRCObject.Object): (("o", "@"), ("v", "+"))) self.channel_modes = [] # type: typing.List[str] self.channel_list_modes = [] # type: typing.List[str] + self.channel_setting_modes = [] # type: typing.List[str] self.channel_paramatered_modes = [] # type: typing.List[str] self.channel_types = ["#"] self.case_mapping = "rfc1459" |
