aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Paul Wise2026-05-08 10:20:16 +0800
committerGravatar steering72532026-05-07 20:54:43 -0600
commit4ebfb12529c2bc3070acf549657ea0d438320660 (patch)
tree046cedfc04fb86f1000400d4f6817571e6fc85fb
parenttransferinliner: Also exclude .zip .7z .bundle (diff)
Add !statu as another typo of the !status command
-rw-r--r--atmisc.tcl3
1 files changed, 2 insertions, 1 deletions
diff --git a/atmisc.tcl b/atmisc.tcl
index 4792477..825fae2 100644
--- a/atmisc.tcl
+++ b/atmisc.tcl
@@ -14,6 +14,7 @@ bind pub * "!statussy" statussy
# the following three for systwi
bind pub * "!statys" statussy
bind pub * "!statis" statussy
+bind pub * "!statu" statussy
bind pub * "!s" statussy
proc statussy {nick uhost hand chan text} {
@@ -21,7 +22,7 @@ proc statussy {nick uhost hand chan text} {
if {[isvoice $nick $chan] || [isop $nick $chan]} {
putserv "PRIVMSG $chan :!status $text"
} else {
- putserv "PRIVMSG #fire-trail :\[atmisc\] ignored \"!statussy/!statys/!statis/!s $text\" from $nick!$uhost in $chan - not a voice or an op"
+ putserv "PRIVMSG #fire-trail :\[atmisc\] ignored \"!statussy/!statys/!statis/!statu/!s $text\" from $nick!$uhost in $chan - not a voice or an op"
}
}
}