nicks that start with ` are no longer considered fake

This commit is contained in:
Jimmy Cao 2011-07-18 12:55:07 -05:00
parent a32012ac5e
commit a66dff8504

View File

@ -1266,7 +1266,7 @@ def hvisit(cli, nick, rest):
def is_fake_nick(who):
return not( ((who[0].isalpha() or (who[0] in (botconfig.CMD_CHAR, "\\", "_"))) and
return not( ((who[0].isalpha() or (who[0] in (botconfig.CMD_CHAR, "\\", "_", "`"))) and
not who.lower().endswith("serv")))