We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263a682 commit 91a097dCopy full SHA for 91a097d
lib/Whateverable/Userlist.pm6
@@ -49,6 +49,7 @@ method irc-nick($event) {
49
%!userlist{$channel}{$event.new-nick} = True;
50
}
51
52
+ $.NEXT
53
54
method irc-join($event) {
55
$!userlist-lock.protect: {
@@ -57,18 +58,21 @@ method irc-join($event) {
57
58
59
%!userlist{$event.channel}{$event.nick} = True;
60
61
62
63
method irc-part($event) {
64
65
%!userlist{$event.channel}{$event.nick}:delete;
66
67
68
69
method irc-quit($event) {
70
71
for %!userlist.keys -> $channel {
72
%!userlist{$channel}{$event.nick}:delete;
73
74
75
76
77
78
has %!userlist-temp; # for storing partial messages
0 commit comments