aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar klea2026-01-28 21:14:20 +0000
committerGravatar steering72532026-01-29 04:37:32 -0700
commit8d1928102f7913be642828b146838714b9b028b3 (patch)
tree5a92662a97cac30bbd5f69539fe32605df1d4df1
parentremind - error out if any of the fields are empty, not just the first (diff)
atmisc: Disable bmeme for #jseater
The #jseater channel works based on !brozzle, or !b, and it's kind of annoying, even if somewhat funny to have it always say 🅱️ after someone queues something. This is more noticeable when, for example, bots bulk queue things.
-rw-r--r--atmisc.tcl3
1 files changed, 3 insertions, 0 deletions
diff --git a/atmisc.tcl b/atmisc.tcl
index 959597b..4792477 100644
--- a/atmisc.tcl
+++ b/atmisc.tcl
@@ -116,6 +116,9 @@ proc ignd {nick uhost hand chan text} {
bind pub * "!b" bmeme
proc bmeme {nick uhost hand chan text} {
+ if {$chan eq "#jseater"} {
+ return
+ }
putserv "PRIVMSG $chan :🅱️"
}