diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-06-21 09:19:45 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-06-21 09:45:52 +0200 |
commit | 5f59a4961e08354a9e44ff8e413bf6260b584d67 (patch) | |
tree | c2d2d5ee3864eebaae40549595c37d93decb0e43 /data/rbot | |
parent | e8b1bb1680a74559c470b198296cc7f39938b634 (diff) |
figlet plugin: utf-8
Diffstat (limited to 'data/rbot')
-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 ac4f466b..9d843ce9 100644 --- a/data/rbot/plugins/figlet.rb +++ b/data/rbot/plugins/figlet.rb @@ -42,7 +42,7 @@ class FigletPlugin < Plugin test_figlet # set the commandline params - @figlet_params = ['-k', '-w', MAX_WIDTH.to_s] + @figlet_params = ['-k', '-w', MAX_WIDTH.to_s, '-C', 'utf8'] # add the font from DEFAULT_FONTS to the cmdline (if figlet has that font) @figlet_params += ['-f', @figlet_font] if @figlet_font |