Skip to content

Commit

Permalink
Worked around a bug causing the bot to crash when entering a channel
Browse files Browse the repository at this point in the history
  • Loading branch information
Jarrod committed Dec 18, 2010
1 parent 1eaae4b commit 55300bd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
3 changes: 0 additions & 3 deletions .gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion Net/IRC/DefaultHandlers.pm
Expand Up @@ -56,7 +56,7 @@ class Net::IRC::DefaultHandlers {
#353: User list for newly joined channel
multi method irc_353($ev) {
$ev.state{'channels'}{ ~$ev.raw<params>[2] } =
%( $ev.what.comb(/<-space - [\+\%\@\&\~]>+/) >>=>>> 1 );
%( $ev.what.split(' ')>>.subst(/^[\+\%\@\&\~]/, '') >>=>>> 1 );
}

multi method irc_kick($ev) {
Expand Down

0 comments on commit 55300bd

Please sign in to comment.