From 24efd4634c560ddcfaea6908efeaf74930b0b30d Mon Sep 17 00:00:00 2001 From: tilpner Date: Sun, 22 Apr 2018 23:39:45 +0200 Subject: Only trigger IBIP on PRIVMSG, also show repo URL --- modules/3-ibip.rkt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/3-ibip.rkt b/modules/3-ibip.rkt index 955841d..68ed503 100644 --- a/modules/3-ibip.rkt +++ b/modules/3-ibip.rkt @@ -3,5 +3,6 @@ ; See https://git.teknik.io/Teknikode/IBIP -(on (suffix-is ".bots") - (reply "Reporting in! [Racket]")) +(on (and (command-is 'PRIVMSG) + (suffix-is ".bots")) + (reply "Reporting in! [Racket] git.tx0.co/meep")) -- cgit v1.2.3