diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-04-09 22:22:27 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-04-09 22:22:27 +0200 |
commit | 1e41b1496490a9cd9d97b9196b65f162397570df (patch) | |
tree | 8bf9cbea5ecfc12e9e85981c7b9ed9d803978a48 | |
parent | 30ddc82becc5fde75f95b1f395bd66d1de4c09a3 (diff) |
uno plugin: colorize color pick
-rw-r--r-- | data/rbot/plugins/games/uno.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/data/rbot/plugins/games/uno.rb b/data/rbot/plugins/games/uno.rb index 56a7b99c..d3b6cbf8 100644 --- a/data/rbot/plugins/games/uno.rb +++ b/data/rbot/plugins/games/uno.rb @@ -390,7 +390,9 @@ class UnoGame announce _('what color is that?') return end - announce _('color is now %{c}') % { :c => @color.downcase } + announce _('color is now %{c}') % { + :c => UnoGame.irc_color_bg(@color)+" #{@color} " + } next_turn end |