diff --git a/bot.py b/bot.py index 3dead69..b9bd225 100644 --- a/bot.py +++ b/bot.py @@ -599,7 +599,8 @@ def do_play_card(bot, player, result_id): if not us: us = UserSetting(id=user.id) - us.cards_played += 1 + if us.stats: + us.cards_played += 1 if game.choosing_color: send_async(bot, chat.id, text=_("Please choose a color"))