nicks that start with ` are no longer considered fake
This commit is contained in:
parent
a32012ac5e
commit
a66dff8504
@ -1266,7 +1266,7 @@ def hvisit(cli, nick, rest):
|
|||||||
|
|
||||||
|
|
||||||
def is_fake_nick(who):
|
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")))
|
not who.lower().endswith("serv")))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user