diff options
author | tilpner | 2018-04-22 23:39:45 +0200 |
---|---|---|
committer | tilpner | 2018-04-22 23:39:45 +0200 |
commit | 24efd4634c560ddcfaea6908efeaf74930b0b30d (patch) | |
tree | c0ca996ef75a84ec9d28f05494010e1ac2300e36 /modules/3-ibip.rkt | |
parent | 9330415b2c3e5b37c5fb205c6162c78d319d5079 (diff) | |
download | meep-24efd4634c560ddcfaea6908efeaf74930b0b30d.tar.gz meep-24efd4634c560ddcfaea6908efeaf74930b0b30d.tar.xz meep-24efd4634c560ddcfaea6908efeaf74930b0b30d.zip |
Only trigger IBIP on PRIVMSG, also show repo URL
Diffstat (limited to 'modules/3-ibip.rkt')
-rw-r--r-- | modules/3-ibip.rkt | 5 |
1 files 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")) |