From: timriker <timriker@c11ca15a-4712-0410-83d8-924469b57eb5> 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=0f1b028daebe65cb581ab12f8627890a6bb0ce88;p=infobot.git stub IsNickInChan for local git-svn-id: https://svn.code.sf.net/p/infobot/code/trunk/blootbot@625 c11ca15a-4712-0410-83d8-924469b57eb5 --- diff --git a/src/CLI/Support.pl b/src/CLI/Support.pl index b3c7b1a..42df6df 100644 --- a/src/CLI/Support.pl +++ b/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, @_); }