From 0a3a7a21f51b3febd90c891288b67c0d41ee6875 Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Fri, 3 Dec 2021 20:57:48 -0500 Subject: Add solanum's 'u' mode for unfiltered channels. --- lib/ASM/Event.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') 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 { -- cgit v1.2.3