From: timriker Date: Tue, 19 Nov 2002 23:39:38 +0000 (+0000) Subject: stub IsNickInChan for local X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=94b559895499a9bbdd3bb172762a7ae5244e15ac;p=infobot.git stub IsNickInChan for local git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk@625 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/blootbot/src/CLI/Support.pl b/blootbot/src/CLI/Support.pl index b3c7b1a..42df6df 100644 --- a/blootbot/src/CLI/Support.pl +++ b/blootbot/src/CLI/Support.pl @@ -23,6 +23,11 @@ sub msg { print("$nick: $msg\n"); } +sub IsNickInChan { + my ($nick,$chan) = @_; + return 1; +} + sub performStrictReply { &msg($who, @_); }