Browse Source

nicks that start with ` are no longer considered fake

master
jcao219 14 years ago
parent
commit
bee471f04f
  1. 2
      wolfgame.py

2
wolfgame.py

@ -1266,7 +1266,7 @@ def hvisit(cli, nick, rest): @@ -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")))

Loading…
Cancel
Save