Only accept nick change notices from NickServ
This commit is contained in:
parent
961a86527c
commit
88d53b9161
1 changed files with 1 additions and 1 deletions
|
@ -2031,7 +2031,7 @@ class PesterWindow(MovingWindow):
|
|||
def deliverNotice(self, handle, msg):
|
||||
h = unicode(handle)
|
||||
m = unicode(msg)
|
||||
if m.startswith("Your nickname is now being changed to"):
|
||||
if h.upper() == "NICKSERV" and m.startswith("Your nickname is now being changed to"):
|
||||
changedto = m[39:-1]
|
||||
msgbox = QtGui.QMessageBox()
|
||||
msgbox.setText("This chumhandle has been registered; you may not use it.")
|
||||
|
|
Loading…
Reference in a new issue