summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-12-03 20:57:48 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-12-03 20:57:48 -0500
commit0a3a7a21f51b3febd90c891288b67c0d41ee6875 (patch)
treec4fad46f6e43da1ddd021b50832c2cfebcbd7284
parent5ca5026a1cea837937dffaa4f51288261862c846 (diff)
downloadantispammeta-0a3a7a21f51b3febd90c891288b67c0d41ee6875.tar.bz2
antispammeta-0a3a7a21f51b3febd90c891288b67c0d41ee6875.tar.xz
antispammeta-0a3a7a21f51b3febd90c891288b67c0d41ee6875.tar.zst
Add solanum's 'u' mode for unfiltered channels.
-rw-r--r--lib/ASM/Event.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ASM/Event.pm b/lib/ASM/Event.pm
index b5fbc6e..4dffc74 100644
--- a/lib/ASM/Event.pm
+++ b/lib/ASM/Event.pm
@@ -430,12 +430,12 @@ sub parse_modes
if (($c eq '-') || ($c eq '+')) {
$t=$c;
}
- else { #eIbq,k,flj,CFLMPQScgimnprstz
+ else { #eIbq,k,flj,CFLMPQScgimnprstuz
if ($t eq '+') {
if ( grep( /[eIbqkfljov]/,($c) ) ) { #modes that take args WHEN BEING ADDED
push (@new_modes, [$t.$c, shift @args]);
}
- elsif ( grep( /[CFLMPQScgimnprstz]/, ($c) ) ) {
+ elsif ( grep( /[CFLMPQScgimnprstuz]/, ($c) ) ) {
push (@new_modes, [$t.$c]);
}
else {
@@ -445,7 +445,7 @@ sub parse_modes
if ( grep( /[eIbqov]/,($c) ) ) { #modes that take args WHEN BEING REMOVED
push (@new_modes, [$t.$c, shift @args]);
}
- elsif ( grep( /[CFLMPQScgimnprstzkflj]/, ($c) ) ) {
+ elsif ( grep( /[CFLMPQScgimnprstuzkflj]/, ($c) ) ) {
push (@new_modes, [$t.$c]);
}
else {