diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-07-02 13:19:48 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-07-02 13:19:48 +0200 |
commit | 25e644cd2e226e624579149400207a9d003a32a2 (patch) | |
tree | 7e4ef6b526021f05bafa2ba2c2d2ca41a91c3eb8 /data | |
parent | 33b5a79d1c1136b9169b533604bfc4d7ef8d5bbf (diff) |
figlet plugin: never prepend nick
Diffstat (limited to 'data')
-rw-r--r-- | data/rbot/plugins/figlet.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/figlet.rb b/data/rbot/plugins/figlet.rb index 8cbdbfd2..700730f4 100644 --- a/data/rbot/plugins/figlet.rb +++ b/data/rbot/plugins/figlet.rb @@ -122,7 +122,7 @@ class FigletPlugin < Plugin exec_params = [send(:"#{key}_path")] + @params[key] + [message] # run the program - m.reply strip_first_last_empty_line(Utils.safe_exec(*exec_params)), :max_lines => 0 + m.reply strip_first_last_empty_line(Utils.safe_exec(*exec_params)), :max_lines => 0, :nick => false end alias :toilet :figlet |