diff options
Diffstat (limited to 'data/rbot/plugins/games/uno.rb')
-rw-r--r-- | data/rbot/plugins/games/uno.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/rbot/plugins/games/uno.rb b/data/rbot/plugins/games/uno.rb index 12b77f6e..ba3b1a90 100644 --- a/data/rbot/plugins/games/uno.rb +++ b/data/rbot/plugins/games/uno.rb @@ -592,6 +592,7 @@ class UnoGame def show_user_cards(player) p = Player === player ? player : get_player(player) + return unless p notify p, _('Your cards: %{cards}') % { :cards => p.cards.join(' ') } |