diff --git a/protocols/inspircd.py b/protocols/inspircd.py index c665858..30a6b2c 100644 --- a/protocols/inspircd.py +++ b/protocols/inspircd.py @@ -411,7 +411,7 @@ class InspIRCdProtocol(TS6BaseProtocol): self._send_with_prefix(self.sid, 'ENDBURST') # Extban definitions - self.extbans_acting = {'quiet': 'm:'} + self.extbans_acting = {'quiet': 'm:', 'ban_nonick': 'n:'} def handle_capab(self, source, command, args): """ diff --git a/protocols/unreal.py b/protocols/unreal.py index 999bfa0..25448d2 100644 --- a/protocols/unreal.py +++ b/protocols/unreal.py @@ -375,7 +375,7 @@ class UnrealProtocol(TS6BaseProtocol): self._send_with_prefix(self.sid, 'EOS') # Extban definitions - self.extbans_acting = {'quiet': '~q:'} + self.extbans_acting = {'quiet': '~q:', 'ban_nonick': '~n:'} def handle_eos(self, numeric, command, args): """EOS is used to denote end of burst."""