aboutsummaryrefslogtreecommitdiff
path: root/lib/IRC/Client.pm6
diff options
context:
space:
mode:
Diffstat (limited to 'lib/IRC/Client.pm6')
-rw-r--r--lib/IRC/Client.pm616
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/IRC/Client.pm6 b/lib/IRC/Client.pm6
index 7b1c7e5..c781ef1 100644
--- a/lib/IRC/Client.pm6
+++ b/lib/IRC/Client.pm6
@@ -34,10 +34,15 @@ class IRC::Client:ver<1.002001> {
EVENTS: for @$events -> $e {
$e<pipe> = {};
+ for @!plugs.grep(*.^can: 'irc-all-events') -> $p {
+ my $res = $p.all-events(self, $e);
+ next EVENTS unless $res === IRC_NOT_HANDLED;
+ }
+
if ( $e<command> eq 'PRIVMSG'
and $e<params>[0] eq $!nick
) {
- for @!plugs.grep(*.^can: 'privmsg-me') -> $p {
+ for @!plugs.grep(*.^can: 'irc-privmsg-me') -> $p {
my $res = $p.privmsg-me(self, $e);
next EVENTS unless $res === IRC_NOT_HANDLED;
}
@@ -46,24 +51,19 @@ class IRC::Client:ver<1.002001> {
if ( $e<command> eq 'NOTICE'
and $e<params>[0] eq $!nick
) {
- for @!plugs.grep(*.^can: 'notice-me') -> $p {
+ for @!plugs.grep(*.^can: 'irc-notice-me') -> $p {
my $res = $p.notice-me(self, $e);
next EVENTS unless $res === IRC_NOT_HANDLED;
}
}
- for @!plugs.grep(*.^can: 'all-events') -> $p {
- my $res = $p.all-events(self, $e);
- next EVENTS unless $res === IRC_NOT_HANDLED;
- }
-
my $cmd = 'irc-' ~ $e<command>.lc;
for @!plugs.grep(*.^can: $cmd) -> $p {
my $res = $p."$cmd"(self, $e);
next EVENTS unless $res === IRC_NOT_HANDLED;
}
- for @!plugs.grep(*.^can: 'unhandled') -> $p {
+ for @!plugs.grep(*.^can: 'irc-unhandled') -> $p {
my $res = $p.unhandled(self, $e);
next EVENTS unless $res === IRC_NOT_HANDLED;
}