summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-06-21 09:16:53 +0200
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2008-06-21 09:45:52 +0200
commite8b1bb1680a74559c470b198296cc7f39938b634 (patch)
tree9d9cc37403daf91c44a05cd583a2f0dc1bf09928
parent8a293be31e63a28e020b40297d5b5fcc1eb3fe4a (diff)
figlet plugin: ignore max_lines
-rw-r--r--data/rbot/plugins/figlet.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/figlet.rb b/data/rbot/plugins/figlet.rb
index 040dee25..ac4f466b 100644
--- a/data/rbot/plugins/figlet.rb
+++ b/data/rbot/plugins/figlet.rb
@@ -69,7 +69,7 @@ class FigletPlugin < Plugin
exec_params = [figlet_path] + @figlet_params + [message]
# run figlet
- m.reply Utils.safe_exec(*exec_params)
+ m.reply Utils.safe_exec(*exec_params), :max_lines => 0
end
end