From bee471f04f4c2d8ba3fae4176733981216ffb831 Mon Sep 17 00:00:00 2001 From: jcao219 Date: Mon, 18 Jul 2011 12:55:07 -0500 Subject: [PATCH] nicks that start with ` are no longer considered fake --- wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wolfgame.py b/wolfgame.py index 30c016e..3110cc5 100644 --- a/wolfgame.py +++ b/wolfgame.py @@ -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")))