diff options
-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 |