summaryrefslogtreecommitdiff
path: root/lib/Multi/IRC.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Multi/IRC.pm')
-rw-r--r--lib/Multi/IRC.pm9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/Multi/IRC.pm b/lib/Multi/IRC.pm
index 5eaf6355..7b0f4a96 100644
--- a/lib/Multi/IRC.pm
+++ b/lib/Multi/IRC.pm
@@ -482,15 +482,6 @@ scr => [ 0, 0, sub {
};
}],
-eval => [ 1, 1, sub {
- my @l = split /\r?\n/, eval($_[2])||$@;
- if(@l > 5 || length(join ' ', @l) > 400) {
- $irc->send_msg(PRIVMSG => $_[1], 'Output too large, refusing to spam chat (and too lazy to use a pastebin).');
- } else {
- $irc->send_msg(PRIVMSG => $_[1], encode_utf8("eval: ".$_)) for @l;
- }
-}],
-
die => [ 1, 1, sub {
kill 'TERM', 0;
}],