Skip to content

Instantly share code, notes, and snippets.

@leedo
Created January 31, 2011 22:35
Show Gist options
  • Save leedo/804982 to your computer and use it in GitHub Desktop.
Save leedo/804982 to your computer and use it in GitHub Desktop.
sub invite {
my ($self, $cl, $msg) = @_;
my (undef, $from, $channel) = @{$msg->{params}};
utf8::decode($_) for ($from, $channel);
$self->broadcast({
type => "action",
event => "announce",
body => "$from has invited you to $channel",
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment