]> jfr.im git - erebus.git/commitdiff
handle 437 numeric nick reservations
authorJohn Runyon <redacted>
Thu, 14 Mar 2024 00:13:10 +0000 (18:13 -0600)
committerJohn Runyon <redacted>
Thu, 14 Mar 2024 00:13:18 +0000 (18:13 -0600)
dunno why solanum can't just use 433 for this...

bot.py

diff --git a/bot.py b/bot.py
index 138b2fc001d4384943117c3d9720738d11fee726..410003f0a9fa1bf79fdbe814d6909c2cb0f9daa9 100644 (file)
--- a/bot.py
+++ b/bot.py
@@ -119,6 +119,7 @@ class Bot(object):
                        '354': self._got354, #WHO
                        '396': self._gotHiddenHost, # hidden host has been set
                        '433': self._got433, #nick in use
+                       '437': self._got433, #nick protected
                        'JOIN': self._gotjoin,
                        'PART': self._gotpart,
                        'KICK': self._gotkick,