From: John Runyon Date: Thu, 14 Mar 2024 00:13:10 +0000 (-0600) Subject: handle 437 numeric nick reservations X-Git-Url: https://jfr.im/git/erebus.git/commitdiff_plain/c3c8dcf77e4f6628441827ef275f8df8f609de6e handle 437 numeric nick reservations dunno why solanum can't just use 433 for this... --- diff --git a/bot.py b/bot.py index 138b2fc..410003f 100644 --- 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,